From 818f3ca4176193f5c1f990845aee378e651f878b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 3 Aug 2026 11:42:08 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..50d8ede --- /dev/null +++ b/src/app/layout.tsx @@ -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 ( + + + + {children} +