From 8102e9b0b5484cfa187c08ba78a4b0e83afcc346 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 23:09:33 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 927a810..cd6d3c7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,15 +3,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TextAbout from '@/components/sections/about/TextAbout'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Coffee, Croissant, Users, Clock, Truck, MapPin } from "lucide-react"; +import { Clock, Truck, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -54,7 +52,6 @@ export default function LandingPage() { @@ -66,9 +63,9 @@ export default function LandingPage() { title="Services & More" description="We prioritize your comfort and accessibility." features={[ - { title: "Operating Hours", description: "Open daily from 8:00 AM until 8:00 PM.", icon: Clock, mediaItems: [] }, - { title: "Delivery Options", description: "Available on Deliveroo and Glovo for your convenience.", icon: Truck, mediaItems: [] }, - { title: "Find Us", description: "Located at 31 Rue Sebou, Casablanca.", icon: MapPin, mediaItems: [] } + { title: "Operating Hours", description: "Open daily from 8:00 AM until 8:00 PM.", icon: Clock, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-table_1.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-table_2.jpg" }] }, + { title: "Delivery Options", description: "Available on Deliveroo and Glovo for your convenience.", icon: Truck, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/coffee-delivery_1.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/coffee-delivery_2.jpg" }] }, + { title: "Find Us", description: "Located at 31 Rue Sebou, Casablanca.", icon: MapPin, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/map-location_1.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/map-location_2.jpg" }] } ]} />