import type { Metadata } from 'next'; import './globals.css'; import '../styles/mobile-overrides.css'; import { AuthBootstrap } from '@/components/auth/AuthBootstrap'; import { StorefrontChrome } from '@/components/store/StorefrontChrome'; import { ClientModalsContainer } from '@/components/ClientModalsContainer'; import { Toaster } from 'sonner'; export const metadata: Metadata = { title: 'iFixKart TechShop | Electronics & Certified Repair Hub', description: 'Shop top smartphones, laptops, smartwatches, OEM replacement spare parts, and book certified device repair services.', openGraph: { title: 'iFixKart TechShop | Electronics & Certified Repair Hub', description: 'Shop top smartphones, laptops, smartwatches, OEM replacement spare parts, and book certified device repair services.', type: 'website', }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (