This commit is contained in:
Vula Builder
2026-07-26 16:40:54 +00:00
parent 3501ab5aae
commit 0eaf331a18
+41
View File
@@ -0,0 +1,41 @@
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',
weight: ["700", "800"],
});
const nunitoSans = Nunito_Sans({
subsets: ['latin'],
variable: '--font-body',
display: 'swap',
weight: ["300", "400", "600", "700"],
});
export const metadata: Metadata = {
title: 'vaVenda Lodge — Boutique Hotel in Limpopo',
description:
"Boutique lodge near Limpopo's game reserves and cultural sites. Immersive stays, online booking, and authentic Venda-inspired hospitality.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className={`${fraunces.variable} ${nunitoSans.variable}`}>
<body className={`${nunitoSans.className} bg-background text-foreground antialiased`}>
<Navigation />
{children}
<Footer />
<script src="/vula-editor.js"></script></body>
</html>
);
}