/
IvanRyabchenko
/
random-coffee-admin
Обзор
Документация
Войти
/
IvanRyabchenko
/
random-coffee-admin
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/app/layout.tsx
26 строк
651 B
Ivan Ryabchenko
feat(auth): implement login page with JWT auth and cookie persistence
16 май 2026, 19:25
16 май 2026, 19:25
8b7ec43
Код
Авторство
О чём код?
import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' import { Toaster } from '@/components/ui/toaster' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'RandomCoffee Admin', description: 'Административная панель для управления Random Coffee', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>): React.ReactElement { return ( <html lang="ru" className="dark"> <body className={inter.className}> {children} <Toaster /> </body> </html> ) }