From aa755968fea5205bc819fa41c0eddec8c1e61d5a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 00:49:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 -------------------------------------------- 1 file changed, 1438 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index acf7deb..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Dolce Chocolate Cafe - Premium Desserts & Chocolate in Tripoli", - description: "Discover Tripoli's finest chocolate café. Handcrafted desserts, waffles, crepes, and premium chocolate drinks. Open daily from 5 PM. Call 021-5800402 for reservations.", - keywords: "chocolate cafe Tripoli, dessert cafe Tripoli, waffles Tripoli, crepes Tripoli, best dessert cafe Tripoli, chocolate Tripoli, premium café, luxury desserts", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Dolce Chocolate Cafe - Tripoli's Sweetest Experience", - description: "Premium handcrafted desserts and chocolate experiences. Visit us on Bin Ashour Street.", - url: "https://dolcechocolatecafe.ly", - siteName: "Dolce Chocolate Cafe", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg", - alt: "Dolce Chocolate Cafe - Premium Desserts", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Dolce Chocolate Cafe - Tripoli", - description: "Premium chocolate desserts and café experience", - images: ["http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -