diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..04ab73c --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,28 @@ +import type { Metadata } from 'next' +import { Sora, DM_Sans } 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 sora = Sora({ subsets: ['latin'], weight: ["600"], variable: "--font-display", display: "swap" }) +const dmSans = DM_Sans({ subsets: ['latin'], weight: ["400","500","700"], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'Ngema Naturals | Handcrafted African Botanical Skincare', + description: 'Natural, ethically sourced skincare from Pretoria. Cold-pressed marula, rooibos & buchu products rooted in South African indigenous wisdom.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + +
+