import './globals.css'; import type { ReactNode } from 'react'; import type { Metadata } from 'next'; import { HeaderNav } from '@/components/HeaderNav'; import { MobileBottomNav } from '@/components/MobileBottomNav'; import { PwaBootstrap } from '@/components/PwaBootstrap'; export const viewport = { themeColor: '#0B0E14', }; export const metadata: Metadata = { title: '2026 世界盃專業量化投注研究中心', description: '以台北時區驅動的世界盃即時賽程、新聞、賠率與量化投注研究平台', manifest: '/manifest.json', other: { 'application-name': '2026 世界盃專業量化投注研究中心', }, }; export default function RootLayout({ children }: { children: ReactNode }) { return (