Deploy
This commit is contained in:
@@ -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 (
|
||||||
|
<html lang="en" className={`${sora.variable} ${dmSans.variable}`}>
|
||||||
|
<body className={dmSans.className}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
<script src="/vula-editor.js"></script></body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user