import './globals.css'; export const metadata = { title: '灵镜', description: '一场温柔但有穿透力的对话,帮你看见自己。', manifest: '/manifest.json', appleWebApp: { capable: true, statusBarStyle: 'black-translucent', title: '灵镜', }, other: { 'mobile-web-app-capable': 'yes', }, }; export const viewport = { themeColor: '#0a0a0a', width: 'device-width', initialScale: 1, maximumScale: 1, userScalable: false, viewportFit: 'cover', }; export default function RootLayout({ children }) { return ( {children} ); }