Deploy
This commit is contained in:
@@ -0,0 +1,25 @@
|
|||||||
|
import type { Metadata } from 'next'
|
||||||
|
import { Domine, Karla } from 'next/font/google'
|
||||||
|
import Navigation from '@/components/layout/Navigation'
|
||||||
|
import Footer from '@/components/layout/Footer'
|
||||||
|
import './globals.css'
|
||||||
|
|
||||||
|
const domine = Domine({ subsets: ['latin'], variable: "--font-heading", display: "swap" })
|
||||||
|
const karla = Karla({ subsets: ['latin'], weight: ["300", "400", "700"], variable: "--font-body", display: "swap" })
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'Zulwini Lodge',
|
||||||
|
description: 'Luxury bush and safari accommodation in KwaZulu Natal, blending Zulu heritage with eco-friendly hospitality.'
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<html lang="en" className={`${domine.variable} ${karla.variable}`}>
|
||||||
|
<body className={karla.className}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
<script src="/vula-editor.js"></script></body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user