This commit is contained in:
Vula Builder
2026-08-03 11:42:08 +00:00
parent f0db1f77b7
commit 818f3ca417
+40
View File
@@ -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>
)
}