diff --git a/src/app/page.tsx b/src/app/page.tsx index a238924..60ac0c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { CheckCircle, Leaf, ShoppingBag } from "lucide-react"; +import { CheckCircle, Leaf, Store, ShoppingBag } from "lucide-react"; export default function LandingPage() { return ( @@ -31,26 +31,11 @@ export default function LandingPage() {
@@ -189,49 +77,15 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - id: "f1", - title: "Dine", - description: "Diverse menu from Western favorites to authentic Middle Eastern classics.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/rice-garnish-tandir-bread-buns-green-salad-table_114579-2579.jpg", - imageAlt: "Gourmet dishes", - }, - items: [ - { - text: "Fresh Ingredients", - icon: CheckCircle, - }, - { - text: "Dietary Options", - icon: Leaf, - }, - ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-two-coffee-machine-cups_23-2148522949.jpg?_wi=2", - imageAlt: "barista espresso machine steam", + id: "f1", title: "Dine", description: "Diverse menu from Western favorites to authentic Middle Eastern classics.", media: { imageSrc: "http://img.b2bpic.net/free-photo/rice-garnish-tandir-bread-buns-green-salad-table_114579-2579.jpg", imageAlt: "Gourmet dishes" }, + items: [{ text: "Fresh Ingredients", icon: CheckCircle }, { text: "Dietary Options", icon: Leaf }], + reverse: false }, { - id: "f2", - title: "Shop", - description: "Buy the raw ingredients, spices, and famous Zuwadeh Jam from our artisan market.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/food-preservation-with-jars_23-2149238962.jpg?_wi=1", - imageAlt: "Spice blends", - }, - items: [ - { - text: "Local Sourcing", - icon: Store, - }, - { - text: "Click & Collect", - icon: ShoppingBag, - }, - ], - reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/restaurant-tables-with-cozy-decor_23-2147764388.jpg", - imageAlt: "restaurant interior modern rustic", - }, + id: "f2", title: "Shop", description: "Buy the raw ingredients, spices, and famous Zuwadeh Jam from our artisan market.", media: { imageSrc: "http://img.b2bpic.net/free-photo/food-preservation-with-jars_23-2149238962.jpg", imageAlt: "Spice blends" }, + items: [{ text: "Local Sourcing", icon: Store }, { text: "Click & Collect", icon: ShoppingBag }], + reverse: true + } ]} title="Experience Everything" description="Dining, sipping, and shopping under one roof." @@ -242,35 +96,12 @@ export default function LandingPage() {