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