This commit is contained in:
Vula Builder
2026-07-31 14:12:28 +00:00
parent eb0f8a9583
commit 2849d06fd8
+28
View File
@@ -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: ["400", "700"], variable: "--font-body", display: "swap" });
export const metadata: Metadata = {
title: 'iKhaya Home — Handcrafted South African Homeware',
description: 'iKhaya Home brings Durban-made cushions, throws, and ceramic décor to your space. Each piece is handcrafted by local artisans, celebrating Southern African heritage and artistry.',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={`${domine.variable} ${karla.variable}`}>
<body className={karla.className}>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
);
}