From 1f6a0792fe36d95e4b5ba50b2771068d751b9e4f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 11:17:54 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..bdc7dc5 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,36 @@ +import type { Metadata } from 'next' +import { Sora, DM_Sans } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const sora = Sora({ + subsets: ['latin'], + variable: '--font-sora', + weight: ["600"], + display: 'swap' +}) + +const dmSans = DM_Sans({ + subsets: ['latin'], + variable: '--font-dm-sans', + weight: ["400", "500"], + display: 'swap' +}) + +export const metadata: Metadata = { + title: 'Masai Suites', + description: 'Organic calm in the heart of Kenya — nature-inspired stays for young adults, families, professionals, and global travellers seeking grounded serenity.' +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +