import type { Metadata } from 'next' import './globals.css' import Navbar from '@/components/Navbar' import Footer from '@/components/Footer' import CartDrawer from '@/components/CartDrawer' import CartFab from '@/components/CartFab' import { CartProvider } from '@/context/CartContext' export const metadata: Metadata = { title: { default: 'Shop | Beach Party Balloons', template: '%s | Beach Party Balloons', }, description: "Milford CT's premier balloon studio. Custom organic arrangements, arches, centerpieces, and event installations. 4.9★ Google rating. Walk-ins welcome.", icons: { icon: '/favicon/favicon.ico', apple: '/favicon/apple-touch-icon.png', }, } export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {/* Google Fonts — same as beachpartyballoons.com */} {/* Font Awesome — same version as beachpartyballoons.com */} {/* Favicon — prefix with basePath so nginx routes them to the estore */}
{children}