30 lines
1.2 KiB
TypeScript
30 lines
1.2 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'
|
|
import { VulaSandboxBoundary } from '@/components/VulaSandboxBoundary'
|
|
|
|
const anton = Anton({ subsets: ['latin'], weight: ["400"], variable: "--font-anton", display: "swap" });
|
|
const inter = Inter({ subsets: ['latin'], variable: "--font-inter", display: "swap" });
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Kasi Drip',
|
|
description: 'South African streetwear straight from the kasi. Bold graphic tees, oversized hoodies, and limited drops for the culture.',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className={`${anton.variable} ${inter.variable}`}>
|
|
<body className={inter.className}>
|
|
<Navigation />
|
|
<VulaSandboxBoundary>{children}</VulaSandboxBoundary>
|
|
<Footer />
|
|
<CartDrawer />
|
|
|
|
<script src="/vula-sandbox-monitor.js"></script><script src="/vula-editor.js"></script></body>
|
|
</html>
|
|
);
|
|
}
|