From 07a66e521ebc49a116fef8046f92fe3aae442608 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 5 Aug 2026 18:14:33 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..1d12c60 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,26 @@ +import type { Metadata } from 'next' +import { Newsreader, Karla } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' +import { VulaSandboxBoundary } from '@/components/VulaSandboxBoundary' + +const newsreader = Newsreader({ subsets: ['latin'], variable: "--font-heading", display: "swap" }) +const karla = Karla({ subsets: ['latin'], variable: "--font-body", display: "swap" }) + +export const metadata: Metadata = { + title: 'Gumede & Partners', + description: 'Gumede & Partners is a corporate law firm in Pietermaritzburg, KwaZulu-Natal, specialising in corporate law, real estate transactions, and business litigation. Book a consultation with our experienced attorneys.' +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + + + {children} +