/
Decoy
/
Test-task-stud-lab
Обзор
Документация
Войти
/
Decoy
/
Test-task-stud-lab
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/app/layout.tsx
25 строк
563 B
Decoy
[+] initial commit
03 июн 2025, 08:27
03 июн 2025, 08:27
d4177a2
Код
Авторство
О чём код?
import "~/styles/globals.css"; import { type Metadata } from "next"; import { Geist } from "next/font/google"; export const metadata: Metadata = { title: "Create T3 App", description: "Generated by create-t3-app", icons: [{ rel: "icon", url: "/favicon.ico" }], }; const geist = Geist({ subsets: ["latin"], variable: "--font-geist-sans", }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( <html lang="en" className={`${geist.variable}`}> <body>{children}</body> </html> ); }