Deploy
This commit is contained in:
@@ -0,0 +1,28 @@
|
|||||||
|
import type { Metadata } from 'next'
|
||||||
|
import { Oswald, Space_Grotesk } 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 oswald = Oswald({ subsets: ['latin'], variable: "--font-heading", display: "swap" })
|
||||||
|
const spaceGrotesk = Space_Grotesk({ subsets: ['latin'], variable: "--font-body", display: "swap" })
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: 'Mzansi Urban',
|
||||||
|
description: 'Mzansi Urban - Bold Soweto streetwear with African prints. Limited drops, fresh arrivals.',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<html lang="en" className={`${oswald.variable} ${spaceGrotesk.variable}`}>
|
||||||
|
<body className={spaceGrotesk.className}>
|
||||||
|
<Navigation />
|
||||||
|
{children}
|
||||||
|
<Footer />
|
||||||
|
<CartDrawer />
|
||||||
|
|
||||||
|
<script src="/vula-editor.js"></script></body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user