From bb250360d79cb83f2b40cb55d6a2bd4eaffa9708 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 17:41:16 +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..8d231e5 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from 'next' +import { Cormorant_Garamond, Jost } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const cormorantGaramond = Cormorant_Garamond({ subsets: ['latin'], weight: ["300", "400", "700"], variable: "--font-display", display: "swap" }) +const jost = Jost({ subsets: ['latin'], weight: ["300", "400", "500"], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'Mpofana Lodge', + description: 'Reimagining the KwaZulu-Natal safari with 10 private suites, plunge pools, Shangaan-guided bush walks, and 24/7 butler service — a new breed of boutique lodge where intelligent luxury meets raw bushveld.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +