From 778ed9f0acd630b13fcb7cb9c1288ffff36fde22 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 17:52:30 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 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..3538969 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,38 @@ +import type { Metadata } from 'next'; +import { Anton, Inter } 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 anton = Anton({ + subsets: ['latin'], + weight: '400', + variable: '--font-display', + display: 'swap', +}); + +const inter = Inter({ + subsets: ['latin'], + variable: '--font-body', + display: 'swap', +}); + +export const metadata: Metadata = { + title: 'Mzansi Wear', + description: 'Soweto-born streetwear. Limited edition African-print hoodies, caps, and tees for the culture-conscious and global diaspora.', +}; + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +