import React from 'react'; import './globals.css'; import { Geist, Geist_Mono } from 'next/font/google'; import Header from '@/components/shopify/header'; import Footer from '@/components/shopify/footer'; import StoreAssistant from '@/components/shopify/store-assistant'; import { site } from '@/config/site'; const geist = Geist({ subsets: ['latin'], variable: '--font-geist-sans', }); const geistMono = Geist_Mono({ subsets: ['latin'], variable: '--font-geist-mono', }); export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Header owns the cart drawer, search and account menu, so every route gets them by rendering here rather than page by page. */}