From a8680cc04e30d245b58b29e5c1602fe1e1a15fcb Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 09:42:39 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 290 ++++++++--------------------------------------- 1 file changed, 45 insertions(+), 245 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d360477..3067c05 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,8 +9,8 @@ import HeroCentered from '@/components/sections/hero/HeroCentered'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Coffee, Leaf, Star, Users, Wifi } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import { Coffee, Leaf, Star, Users, Wifi, MapPin, Phone, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -30,97 +30,41 @@ export default function LandingPage() {
@@ -142,196 +86,52 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "1", - brand: "Coffee", - name: "Cappuccino", - price: "BDT 250", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=1", - }, - { - id: "2", - brand: "Coffee", - name: "Latte", - price: "BDT 280", - rating: 5, - reviewCount: "95", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=2", - }, - { - id: "3", - brand: "Dessert", - name: "Tiramisu", - price: "BDT 350", - rating: 4, - reviewCount: "80", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=3", - }, - { - id: "4", - brand: "Dessert", - name: "Cheesecake", - price: "BDT 320", - rating: 5, - reviewCount: "110", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=4", - }, - { - id: "5", - brand: "Dessert", - name: "Chocolate Brownie", - price: "BDT 220", - rating: 4, - reviewCount: "70", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=5", - }, - { - id: "6", - brand: "Food", - name: "Pasta & Lasagna", - price: "BDT 450", - rating: 5, - reviewCount: "150", - imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=6", - }, + { id: "1", brand: "Coffee", name: "Cappuccino", price: "BDT 250", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=1" }, + { id: "2", brand: "Coffee", name: "Latte", price: "BDT 280", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=2" }, + { id: "3", brand: "Dessert", name: "Tiramisu", price: "BDT 350", rating: 4, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=3" }, + { id: "4", brand: "Dessert", name: "Cheesecake", price: "BDT 320", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=4" }, + { id: "5", brand: "Dessert", name: "Chocolate Brownie", price: "BDT 220", rating: 4, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=5" }, + { id: "6", brand: "Food", name: "Pasta & Lasagna", price: "BDT 450", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-pizzas-rosemary_23-2147772121.jpg?_wi=6" }, ]} title="Menu Highlights" description="Indulge in our selection of freshly brewed coffees and homemade desserts." /> -
- -
-
-