diff --git a/src/app/global.css b/src/app/global.css index 25db01c..293d3b1 100644 --- a/src/app/global.css +++ b/src/app/global.css @@ -1,3 +1,3 @@ -body { - margin: 0; -} \ No newline at end of file +body { + margin: 0; +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e848fa4..bdbbf78 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,10 +1,11 @@ import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; +import { Inter, Noto_Sans_JP } from 'next/font/google'; import './global.css'; import { Footer } from '../components/Footer/Footer'; import { Header } from '../components/Header/Header'; const inter = Inter({ subsets: ['latin'] }); +const notoSansJP = Noto_Sans_JP({ subsets: ['latin'] }); export const metadata: Metadata = { title: { @@ -21,7 +22,7 @@ export default function RootLayout({ }>) { return ( - +
{children}