Deploy
This commit is contained in:
@@ -0,0 +1,36 @@
|
|||||||
|
import type { Metadata } from 'next'
|
||||||
|
import { Bricolage_Grotesque, Lora } from 'next/font/google'
|
||||||
|
import Navigation from '@/components/layout/Navigation'
|
||||||
|
import Footer from '@/components/layout/Footer'
|
||||||
|
import './globals.css'
|
||||||
|
|
||||||
|
const bricolageGrotesque = Bricolage_Grotesque({
|
||||||
|
subsets: ['latin'],
|
||||||
|
weight: ["700", "800"],
|
||||||
|
variable: '--font-display',
|
||||||
|
display: 'swap'
|
||||||
|
})
|
||||||
|
|
||||||
|
const lora = Lora({
|
||||||
|
subsets: ['latin'],
|
||||||
|
style: ["normal", "italic"],
|
||||||
|
variable: '--font-body',
|
||||||
|
display: 'swap'
|
||||||
|
})
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'Masai Suites — Boutique Hotel in Nairobi, Kenya',
|
||||||
|
description: 'Experience authentic Kenyan hospitality at Masai Suites, a boutique hotel offering curated safari experiences and personalized service for discerning international travelers and business visitors.',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<html lang="en" className={`${bricolageGrotesque.variable} ${lora.variable}`}>
|
||||||
|
<body className={`${lora.className} antialiased`}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
<script src="/vula-editor.js"></script></body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user