This commit is contained in:
Vula Builder
2026-07-25 19:05:16 +00:00
parent aac2e6e196
commit 4115496be2
+41
View File
@@ -0,0 +1,41 @@
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 cormorant = Cormorant_Garamond({
subsets: ['latin'],
weight: ["300", "400", "600"],
variable: '--font-cormorant',
display: 'swap',
})
const jost = Jost({
subsets: ['latin'],
weight: ["300", "400"],
variable: '--font-jost',
display: 'swap',
})
export const metadata: Metadata = {
title: 'Masai Suites',
description:
'Experience authentic Kenyan luxury at Masai Suites, a boutique hotel blending contemporary elegance with cultural immersion. Book your stay in Nairobi for safari adventures, business, or leisure.',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en" className={`${cormorant.variable} ${jost.variable}`}>
<body className={jost.className}>
<Navigation />
{children}
<Footer />
<script src="/vula-editor.js"></script></body>
</html>
)
}