/
githubmirror
/
Web-Dev-For-Beginners
Обзор
Документация
Войти
/
githubmirror
/
Web-Dev-For-Beginners
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
memory-game/app/layout.js
29 строк
615 B
prathoseraaj V
Update memory-game/app/layout.js
03 окт 2025, 12:07
Не верифицирован
03 окт 2025, 12:07
9c2d4c3
Код
Авторство
О чём код?
import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata = { title: "Memory Game", description: "A fun and challenging memory game built with Next.js.", }; export default function RootLayout({ children }) { return ( <html lang="en"> <body className={`${geistSans.variable} ${geistMono.variable} antialiased`} > {children} </body> </html> ); }