9 Commits

Author SHA1 Message Date
d0d14c848f Merge version_3 into main
Merge version_3 into main
2026-03-06 00:50:39 +00:00
c748dbd249 Update src/app/page.tsx 2026-03-06 00:50:35 +00:00
0296fff4aa Update src/app/layout.tsx 2026-03-06 00:50:34 +00:00
e39be16d51 Merge version_2 into main
Merge version_2 into main
2026-03-06 00:49:08 +00:00
2d66d530ae Update src/app/page.tsx 2026-03-06 00:49:04 +00:00
aa755968fe Update src/app/layout.tsx 2026-03-06 00:49:04 +00:00
8e0e9ce338 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:47:52 +00:00
36af3ea5bc Merge version_1 into main
Merge version_1 into main
2026-03-06 00:47:06 +00:00
15a75a326c Merge version_1 into main
Merge version_1 into main
2026-03-06 00:45:33 +00:00
2 changed files with 13 additions and 60 deletions

View File

@@ -1,70 +1,23 @@
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 { Poppins } 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",
const poppins = Poppins({
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700", "800", "900"],
});
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"],
},
};
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,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -79,7 +79,8 @@ export default function HomePage() {
<TextSplitAbout
title="Our Passion for Chocolate"
description={[
"Welcome to Dolce Chocolate Cafe, where we celebrate the art of fine chocolate and exquisite desserts. Every creation is crafted with meticulous attention to detail, using premium ingredients sourced from the finest suppliers.", "We believe that a perfect dessert is more than just taste—it's an experience that brings people together. Whether you're celebrating a special moment with loved ones or simply craving an escape into sweetness, our café is your sanctuary.", "Open daily from 5 PM, we invite you to discover why locals and visitors alike consider us Tripoli's premier destination for chocolate experiences. Come enjoy our cozy ambiance, Instagram-worthy treats, and unforgettable service."]}
"Dolce Chocolate Cafe celebrates the art of fine chocolate and exquisite desserts. Every creation is crafted with meticulous attention to detail, using premium ingredients sourced from the finest suppliers.", "Perfect for celebrating special moments or escaping into sweetness, our café offers cozy ambiance, Instagram-worthy treats, and unforgettable service. Open daily from 5 PMdiscover why Tripoli's locals and visitors choose us as their premier chocolate destination."
]}
buttons={[
{ text: "View Menu", href: "/menu" },
{ text: "Make a Reservation", href: "/contact" },
@@ -163,7 +164,7 @@ export default function HomePage() {
tagIcon={MapPin}
tagAnimation="slide-up"
title="Visit Dolce Chocolate Cafe Tonight"
description="Bin Ashour Street, Tripoli, LibyaOpen Daily from 5 PMCall 021-5800402 for reservations and inquiries"
description="Bin Ashour Street, Tripoli, Libya\nOpen Daily from 5 PM\nCall 021-5800402 for reservations and inquiries"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
@@ -189,4 +190,4 @@ export default function HomePage() {
</footer>
</ThemeProvider>
);
}
}