import type { Metadata, Viewport } from 'next'; import { Inter } from 'next/font/google'; import './globals.css'; import { Providers } from './providers'; const inter = Inter({ subsets: ['latin'] }); export const viewport: Viewport = { width: 'device-width', initialScale: 1, maximumScale: 1, userScalable: false, }; export const metadata: Metadata = { title: 'My Weekly To Do List', description: 'A simple, designy to-do app.', appleWebApp: { capable: true, statusBarStyle: 'default', title: 'My Weekly To Do List', }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (