diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..4bf8a12 --- /dev/null +++ b/src/app/layout.tsx @@ -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 ( + + + + {children} +