This commit is contained in:
Vula Builder
2026-07-29 18:15:18 +00:00
parent d41bebc6fe
commit 4bdab35ba9
+46
View File
@@ -0,0 +1,46 @@
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'],
weight: ["400", "700"],
variable: '--font-body',
display: 'swap',
});
export const metadata: Metadata = {
title: 'Mzansi',
description:
'Bold streetwear for urban South Africa. Shop fresh kicks, local tees, and exclusive drops at Mzansi — where style meets identity.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body
className={`${inter.variable} ${anton.variable} ${inter.className} antialiased`}
>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
);
}