From 5850d4d5f532e2aa04002671d512dc2b4b8fcefa Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 09:16:59 +0000 Subject: [PATCH] Deploy --- src/app/layout.tsx | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..3f0b02a --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,39 @@ +import type { Metadata } from 'next' +import { IBM_Plex_Sans, Inter } from 'next/font/google' +import Navigation from '@/components/layout/Navigation' +import Footer from '@/components/layout/Footer' +import './globals.css' + +const ibmPlexSans = IBM_Plex_Sans({ + subsets: ['latin'], + weight: ["400", "500", "600", "700"], + variable: '--font-heading', + display: 'swap', +}) + +const inter = Inter({ + subsets: ['latin'], + variable: '--font-body', + display: 'swap', +}) + +export const metadata: Metadata = { + title: 'Kapa Roast', + description: 'Cape Town specialty coffee roastery celebrating single-origin African beans. Roasted with intention, brewed with pride.', +} + +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( + + + + {children} +