Deploy
This commit is contained in:
@@ -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>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user