diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..0af3ac3 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,40 @@ +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-fraunces', + display: 'swap', + weight: ["700", "800"], +}) +const nunitoSans = Nunito_Sans({ + subsets: ['latin'], + variable: '--font-nunito-sans', + display: 'swap', + weight: ["400", "600", "700"], +}) + +export const metadata: Metadata = { + title: 'Thornveld Game Lodge', + description: + 'Thornveld Game Lodge — family-run bush retreat near Hoedspruit, Limpopo. Eight self-catering chalets, walking trails, sundowner drives, and genuine Kruger wildlife encounters. Welcoming SA families and international safari lovers.', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + +
+