From 89954330b6e4e7b4de3d2a770004fdb2add73087 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 18:35:15 +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..14bd241 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from 'next' +import { Marcellus, Jost } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const marcellus = Marcellus({ subsets: ['latin'], weight: '400', variable: "--font-heading", display: "swap" }) +const jost = Jost({ subsets: ['latin'], weight: ["300", "400", "500"], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'Molten Rock Private Reserve', + description: 'Exclusive luxury safari retreat in Greater Kruger. Six bespoke sanctuary suites, private game drives, bush spa, and fine dining under the stars.' +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +