diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..7aadf1f --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,39 @@ +import type { Metadata } from 'next' +import { Cormorant_Garamond, Jost } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' +import CartDrawer from '@/components/shop/CartDrawer' + +const cormorantGaramond = Cormorant_Garamond({ + subsets: ['latin'], + weight: '300', + variable: '--font-heading', + display: 'swap', +}) + +const jost = Jost({ + subsets: ['latin'], + weight: ["300", "400"], + variable: '--font-body', + display: 'swap', +}) + +export const metadata: Metadata = { + title: 'Vault by Mkhize', + description: "Luxury sneaker boutique in Johannesburg's Sandton offering exclusive limited-edition drops, authentication guarantee, and curated streetwear.", +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +