From 3e302ea69e08259b2c67355a7716ae213eed1426 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sun, 26 Jul 2026 16:56:14 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..7196f85 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,25 @@ +import type { Metadata } from 'next'; +import { Fraunces, Nunito_Sans } from 'next/font/google'; +import Navigation from '@/components/layout/Navigation'; +import Footer from '@/components/layout/Footer'; +import './globals.css'; + +const fraunces = Fraunces({ subsets: ['latin'], variable: "--font-heading", display: "swap" }); +const nunitoSans = Nunito_Sans({ subsets: ['latin'], weight: ["300", "400", "600", "700"], variable: "--font-body", display: "swap" }); + +export const metadata: Metadata = { + title: 'vaVenda Lodge - Authentic Venda Heritage Boutique Hotel in Limpopo', + description: 'Reimagining Venda hospitality at vaVenda Lodge, a boutique hotel near the Soutpansberg. Immerse yourself in indigenous craft stories, safari-ready rooms, and warm Limpopo welcome. Book online, explore cultural weaving workshops, taste mopane worm cuisine, and sleep under thatched luxury.', +}; + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +