This commit is contained in:
Vula Builder
2026-07-28 13:27:22 +00:00
parent f58aadd245
commit bec5f60ce3
+39
View File
@@ -0,0 +1,39 @@
import type { Metadata } from 'next'
import { Cormorant_Garamond, Jost } from 'next/font/google'
import Navigation from '@/components/layout/Navigation'
import Footer from '@/components/layout/Footer'
import './globals.css'
import CartDrawer from '@/components/shop/CartDrawer'
const cormorantGaramond = Cormorant_Garamond({
subsets: ['latin'],
weight: '300',
variable: '--font-heading',
display: 'swap',
})
const jost = Jost({
subsets: ['latin'],
weight: ["300", "400"],
variable: '--font-body',
display: 'swap',
})
export const metadata: Metadata = {
title: 'Vault by Mkhize',
description: "Luxury sneaker boutique in Johannesburg's Sandton offering exclusive limited-edition drops, authentication guarantee, and curated streetwear.",
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={`${cormorantGaramond.variable} ${jost.variable}`}>
<body className={jost.className}>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
)
}