diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..46f5f99 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,28 @@ +import type { Metadata } from 'next' +import { Domine, Karla } 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 domine = Domine({ subsets: ['latin'], variable: "--font-heading", display: "swap" }) +const karla = Karla({ subsets: ['latin'], weight: ["300", "400", "700"], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'eKhayalami', + description: 'Handcrafted homeware from KwaZulu-Natal — contemporary African décor by local artisans. Shop cushions, throws, and ceramics online, delivered across South Africa.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + +
+