| 12345678910111213141516171819202122232425262728293031323334 |
- import { Orbitron, Noto_Sans_JP, Roboto_Mono } from "next/font/google"
- import './globals.css'
- const orbitron = Orbitron({
- subsets: ["latin"],
- variable: "--font-orbitron",
- })
- const noto = Noto_Sans_JP({
- subsets: ["latin"],
- variable: "--font-noto-sans-jp",
- })
- const robotoMono = Roboto_Mono({
- subsets: ["latin"],
- variable: "--font-roboto-mono",
- })
- export default function RootLayout({
- children,
- }: {
- children: React.ReactNode
- }) {
- return (
- <html lang="en" className={`${orbitron.variable} ${noto.variable} ${robotoMono.variable}`}>
- <body>
- {children}
- </body>
- </html>
- )
- }
|