From c4591336928ab447ea3060bbfc2df5bd5994a825 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 07:32:27 +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..83efd72 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,38 @@ +import type { Metadata } from 'next'; +import { Bricolage_Grotesque, Lora } 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 bricolageGrotesque = Bricolage_Grotesque({ + subsets: ['latin'], + variable: '--font-heading', + display: 'swap', +}); + +const lora = Lora({ + subsets: ['latin'], + variable: '--font-body', + display: 'swap', +}); + +export const metadata: Metadata = { + title: 'Ndlovu Naturals', + description: + 'Handcrafted skincare from Pretoria. Indigenous South African botanicals like marula, rooibos, and buchu. Small-batch, cold-pressed, ethically sourced.', +}; + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +