This commit is contained in:
Vula Builder
2026-07-27 17:10:19 +00:00
parent 3f260a8281
commit 991e10f0bc
+43
View File
@@ -0,0 +1,43 @@
import type { Metadata } from 'next';
import { Archivo_Black, 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 archivoBlack = Archivo_Black({
subsets: ['latin'],
weight: '400',
variable: '--font-display',
display: 'swap',
});
const spaceGrotesk = Space_Grotesk({
subsets: ['latin'],
weight: ["300", "400", "500", "600", "700"],
variable: '--font-body',
display: 'swap',
});
export const metadata: Metadata = {
title: 'Urban Threads | Limited Edition African Streetwear',
description: 'Urban Threads is a Soweto-born streetwear brand crafting limited edition hoodies, caps, and tees with authentic African prints for the culture.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className={`${archivoBlack.variable} ${spaceGrotesk.variable}`}>
<body className={spaceGrotesk.className}>
<Navigation />
{children}
<Footer />
<CartDrawer />
<script src="/vula-editor.js"></script></body>
</html>
);
}