39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
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-display',
|
|
display: 'swap',
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
variable: '--font-body',
|
|
display: 'swap',
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Mzansi Wear',
|
|
description: 'Soweto-born streetwear. Limited edition African-print hoodies, caps, and tees for the culture-conscious and global diaspora.',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className={`${anton.variable} ${inter.variable}`}>
|
|
<body className={`${inter.className} bg-[#ffffff] text-[#101418]`}>
|
|
<Navigation />
|
|
{children}
|
|
<Footer />
|
|
<CartDrawer />
|
|
|
|
<script src="/vula-editor.js"></script></body>
|
|
</html>
|
|
);
|
|
}
|