This commit is contained in:
Vula Builder
2026-07-26 17:41:16 +00:00
parent fab271a2fc
commit bb250360d7
+25
View File
@@ -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 (
<html lang="en" className={`${cormorantGaramond.variable} ${jost.variable}`}>
<body className={jost.className}>
<Navigation />
{children}
<Footer />
<script src="/vula-editor.js"></script></body>
</html>
)
}