/
Leks76
/
Next-tutorial
Обзор
Документация
Войти
/
Leks76
/
Next-tutorial
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/app/layout.jsx
35 строк
730 B
Leks76
next tutorial complit
27 апр 2026, 07:21
Верифицирован
27 апр 2026, 07:21
2552a7e
Код
Авторство
О чём код?
import { Inter } from "next/font/google"; import "./globals.css"; import Footer from "./../components/Footer"; import Navigation from "./../components/Navigation"; const inter = Inter({ subsets:['cyrilic', 'latin'], display: 'swap', variable: '--font-inter', openGraph: { siteName: 'Tutirial', description: 'Tutorial for Next.js' } }) export const metadata = { title: "Create Next App", description: "Generated by create next app", }; export default function RootLayout({ children }) { return ( <html lang="ru" className={inter.variable}> <body> <div className="bg-grid"></div> <Navigation /> <main className="container page"> {children} </main> <Footer /> </body> </html> ); }