From 15f2099500938bf3f27eda24a22d7f97c251be95 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:06:11 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..1ccc59e --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,28 @@ +import type { Metadata } from 'next' +import { Oswald, Space_Grotesk } 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 oswald = Oswald({ subsets: ['latin'], variable: "--font-heading", display: "swap" }) +const spaceGrotesk = Space_Grotesk({ subsets: ['latin'], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'Mzansi Urban', + description: 'Mzansi Urban - Bold Soweto streetwear with African prints. Limited drops, fresh arrivals.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +