import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import { Providers } from './providers'; const inter = Inter({ subsets: ['latin', 'cyrillic'] }); export const metadata: Metadata = { title: 'Campfire ID', description: 'Ваш цифровой профиль в Telegram', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }