import './globals.css'; import type { Metadata } from 'next'; import { Inter } from 'next/font/google'; import { Toaster } from '@/components/ui/sonner'; const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { title: 'Космический путь - Система геймификации', description: 'Интерактивная система мотивации и развития сотрудников', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}