import type { Metadata } from 'next'; import { Providers } from './providers'; import '@/styles/globals.css'; import '@/styles/material-theme.css'; export const metadata: Metadata = { title: 'Uchill Platform', description: 'Образовательная платформа', viewport: 'width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover', themeColor: '#7444FD', manifest: '/manifest.json', icons: { icon: '/icon.svg', shortcut: '/icon.svg', apple: '/icon.svg', }, appleWebApp: { capable: true, statusBarStyle: 'black-translucent', title: 'Uchill', }, formatDetection: { telephone: false, }, other: { 'mobile-web-app-capable': 'yes', }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }