This commit is contained in:
Vula Builder
2026-08-01 16:26:29 +00:00
parent 3ccbcdcd40
commit 216ac8722e
+38
View File
@@ -0,0 +1,38 @@
import type { Metadata } from 'next'
import { Anton, Inter } 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 anton = Anton({
subsets: ['latin'],
weight: ["400"],
variable: '--font-heading',
display: 'swap',
})
const inter = Inter({
subsets: ['latin'],
variable: '--font-body',
display: 'swap',
})
export const metadata: Metadata = {
title: 'Kasi Wear',
description: 'Soweto-born streetwear label: limited edition African-print hoodies, caps, and tees for kasi kids, amadiaspora, and global collectors.',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={`${anton.variable} ${inter.variable}`}>
<body className={inter.className}>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
)
}