diff --git a/src/app/page.tsx b/src/app/page.tsx index cda7a3e..3c71a01 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,16 +3,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Car, Star, ShoppingBag, Utensils, Zap, User, Coffee, Smile, Shirt, Bot } from "lucide-react"; export default function LandingPage() { return ( @@ -56,6 +52,7 @@ export default function LandingPage() { description="Explore our wide range of categories and popular spots." animationType="slide-up" textboxLayout="split" + useInvertedBackground={false} features={[ { id: "f1", title: "Food & Drink", tags: ["KFC", "The Pizza House"] }, { id: "f2", title: "Clothing & Shoes", tags: ["Fashion Hub", "Shoe Palace"] }, @@ -70,6 +67,7 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="three-columns-all-equal-width" + useInvertedBackground={false} title="Featured Popular Spots" description="Discover some of our most visited locations in the mall." products={[ @@ -86,12 +84,13 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="three-columns-all-equal-width" + useInvertedBackground={false} title="What Visitors Say" description="Our mall maintains a 4.0 rating based on hundreds of happy shopper experiences." testimonials={[ - { id: "r1", name: "John D.", role: "Shopper", company: "Mall Visit", rating: 4, testimonial: "Great selection of food and very easy navigation!" }, - { id: "r2", name: "Sarah M.", role: "Parent", company: "Family Day", rating: 5, testimonial: "My kids loved the cinema experience, highly recommended." }, - { id: "r3", name: "Robert K.", role: "Customer", company: "Electronics", rating: 4, testimonial: "Friendly service at the photography shop, will visit again." } + { id: "r1", name: "John D.", role: "Shopper", company: "Mall Visit", rating: 4, imageSrc: "https://img.freepik.com/free-photo/happy-man_1147-156.jpg" }, + { id: "r2", name: "Sarah M.", role: "Parent", company: "Family Day", rating: 5, imageSrc: "https://img.freepik.com/free-photo/happy-woman_1147-157.jpg" }, + { id: "r3", name: "Robert K.", role: "Customer", company: "Electronics", rating: 4, imageSrc: "https://img.freepik.com/free-photo/happy-man-2_1147-158.jpg" } ]} />