From 8574b40eb15b3cf2ed46e3b18e97843132dee8e4 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:20 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 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..1dbf2b2 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,36 @@ +import type { Metadata } from 'next' +import { Fraunces, Nunito_Sans } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const fraunces = Fraunces({ + subsets: ['latin'], + variable: '--font-heading', + display: 'swap', + weight: ["600", "700", "800"], +}) + +const nunitoSans = Nunito_Sans({ + subsets: ['latin'], + variable: '--font-body', + display: 'swap', + weight: ["400", "600", "700"], +}) + +export const metadata: Metadata = { + title: 'Zulu Lodge', + description: 'Luxury safari lodge in KwaZulu-Natal. Experience Zulu heritage, bush accommodation, and unforgettable wildlife encounters.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +