Deploy
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user