diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..e726ae9 --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,35 @@ +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: 'Durban Curry | Authentic Indian Restaurant in Durban', + description: + 'Rich Indian flavours meet Durban hospitality. Hand-ground masalas, locally sourced produce, and a family-friendly table that gives back to KZN communities.', +} + +export default function RootLayout({ children }: { children: React.ReactNode }) { + return ( + +
+