From ca30f46c941d9a461fb10337541ab98e55315d60 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 29 Jul 2026 19:04:15 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 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..447375e --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,42 @@ +import type { Metadata } from 'next' +import { Archivo_Black, 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 archivoBlack = Archivo_Black({ + subsets: ['latin'], + weight: '400', + variable: '--font-heading', + display: 'swap', +}) + +const spaceGrotesk = Space_Grotesk({ + subsets: ['latin'], + variable: '--font-body', + display: 'swap', +}) + +export const metadata: Metadata = { + title: 'Diva', + description: 'Diva — South African online fashion boutique. Bold modern style for young professional women in Johannesburg. Shop clothing, shoes and accessories.', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + + + {children} +