7 Commits

Author SHA1 Message Date
c44f0eebd5 Merge version_4 into main
Merge version_4 into main
2026-05-04 20:52:22 +00:00
985cad8a8c Update src/app/page.tsx 2026-05-04 20:52:16 +00:00
9dc0bfd82b Merge version_3 into main
Merge version_3 into main
2026-05-04 20:51:32 +00:00
088288a410 Update src/app/page.tsx 2026-05-04 20:51:29 +00:00
36d947eaef Merge version_2 into main
Merge version_2 into main
2026-05-04 20:50:45 +00:00
e8444ffccb Update src/app/page.tsx 2026-05-04 20:50:42 +00:00
223aa23861 Merge version_1 into main
Merge version_1 into main
2026-05-04 20:49:51 +00:00

View File

@@ -120,25 +120,25 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1", brand: "Coffee", name: "Signature Espresso", price: "Standard", rating: 5,
id: "1", brand: "Coffee", name: "Signature Espresso", price: "$4.50", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/brunette-girl-using-her-cellphone-reach-friend_1157-17795.jpg"},
{
id: "2", brand: "Breakfast", name: "Morning Harvest Bowl", price: "Premium", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-cup-coffee-with-milk_23-2148337163.jpg"},
id: "2", brand: "Breakfast", name: "Morning Harvest Bowl", price: "$12.00", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/high-angle-view-cup-coffee-with-milk_23-2148337163.jpg"},
{
id: "3", brand: "Dinner", name: "Flame-Grilled Chicken", price: "Signature", rating: 5,
id: "3", brand: "Dinner", name: "Flame-Grilled Chicken", price: "$18.50", rating: 5,
reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/fruit-bowl-milk-top-view_23-2148367503.jpg"},
{
id: "4", brand: "Coffee", name: "Cold Brew Reserve", price: "Refined", rating: 4,
id: "4", brand: "Coffee", name: "Cold Brew Reserve", price: "$6.00", rating: 4,
reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-decoration-with-mug-biscuits_23-2148350190.jpg"},
{
id: "5", brand: "Dessert", name: "Velvet Chocolate Tart", price: "Decadent", rating: 5,
id: "5", brand: "Dessert", name: "Velvet Chocolate Tart", price: "$9.00", rating: 5,
reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/dreamy-stylish-girl-with-blonde-hair-pink-lips-sitting-coffee-shop-with-wooden-chairs-table-she-holds-cup-cofee-touches-her-hair_197531-102.jpg"},
{
id: "6", brand: "Tea", name: "Herbal Infusion Collection", price: "Selection", rating: 4,
id: "6", brand: "Tea", name: "Herbal Infusion Collection", price: "$5.00", rating: 4,
reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/top-view-black-coffee-mug-near-wooden-cutting-board-cheese-copy-space_132075-11325.jpg"},
]}
title="Curated Flavors"
title="Signature Culinary Selections"
description="A glimpse into our artisanal menu offerings."
/>
</div>
@@ -180,7 +180,7 @@ export default function LandingPage() {
{
id: "visit", badge: "Open Daily", price: "Experience Delicato", subtitle: "Bring your friends and family for an unforgettable culinary journey.", buttons: [
{
text: "Call to Reserve", href: "tel:+258868110022"},
text: "Book Your Table Now", href: "tel:+258868110022"},
],
features: [
"Family Friendly", "Premium Ambience", "Local Flavors"],
@@ -231,4 +231,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}