import type { Metadata, Viewport } from 'next' import './globals.css' import { Toaster } from '@/components/ui' export const metadata: Metadata = { title: 'Next Step - Health Management', description: 'A calm, reliable app to help manage appointments, medications, and notes for health care.', manifest: '/manifest.json', appleWebApp: { capable: true, statusBarStyle: 'default', title: 'Next Step', }, } export const viewport: Viewport = { width: 'device-width', initialScale: 1, maximumScale: 1, userScalable: false, themeColor: '#528252', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (
{/* Preconnect to Google Fonts for performance */} {children}