This commit is contained in:
Vula Builder
2026-07-14 18:35:15 +00:00
parent df006c2323
commit 89954330b6
+25
View File
@@ -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 (
<html lang="en" className={`${marcellus.variable} ${jost.variable}`}>
<body className={jost.className}>
<Navigation />
{children}
<Footer />
<script src="/vula-editor.js"></script></body>
</html>
)
}