From 30826367e98320d51da9d88ad5adb772dd12e25c Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:04:55 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..e4e9076 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +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' + +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: 'Zulwini Lodge', + description: 'Luxury bush and safari accommodation in KwaZulu Natal, blending Zulu heritage with eco-friendly hospitality.' +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +