This commit is contained in:
Vula Builder
2026-07-28 12:39:37 +00:00
parent 40d31f0a9d
commit 04485a5e83
+28
View File
@@ -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 (
<html lang="en" className={`${sora.variable} ${dmSans.variable}`}>
<body className={dmSans.className}>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
)
}