Deploy
This commit is contained in:
@@ -0,0 +1,40 @@
|
|||||||
|
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-display',
|
||||||
|
weight: ["600"],
|
||||||
|
display: 'swap',
|
||||||
|
})
|
||||||
|
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
subsets: ['latin'],
|
||||||
|
variable: '--font-body',
|
||||||
|
display: 'swap',
|
||||||
|
})
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'Zama Salon',
|
||||||
|
description:
|
||||||
|
'Zama Salon in Fourways, Johannesburg offers expert hair and nail services for natural and chemically treated hair, keratin treatments, braids, cuts, colouring, and more — a welcoming space for style-conscious men and women.',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RootLayout({
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<html lang="en" className={`${sora.variable} ${dmSans.variable}`}>
|
||||||
|
<body className={dmSans.className}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user