From 0296fff4aae65178541e336d80c6e606e3144830 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 00:50:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1390 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1390 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..081e8a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1390 @@ +import type { Metadata } from "next"; +import { Poppins } from "next/font/google"; +import "./globals.css"; + +const poppins = Poppins({ + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700", "800", "900"], +}); + +export const metadata: Metadata = { + title: "Dolce Chocolate Cafe - Premium Desserts in Tripoli", description: "Experience luxury chocolate and handcrafted desserts at Dolce Chocolate Cafe in Tripoli, Libya. Open daily from 5 PM."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +