import type { Metadata, Viewport } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Smart Home Dashboard", description: "Smart Home Tablet Dashboard — управление умным домом", manifest: "/manifest.json", }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 1, userScalable: false, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children} ); }