From f0bf1c126c8d7d611b84b5ba8b22dcb58abeba90 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 18:30:49 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cf1b629..308a4a3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { ArrowRight, Star, Globe, Zap, CheckCircle, Mail, Phone, MapPin } from 'lucide-react'; +import { Zap, Star, CheckCircle, Globe } from 'lucide-react'; const navItems = [ { name: "Home", id: "/" } @@ -18,7 +18,7 @@ const navItems = [ export default function Page() { return ( - + @@ -55,6 +55,7 @@ export default function Page() { textboxLayout="default" gridVariant="uniform-all-items-equal" animationType="slide-up" + useInvertedBackground={false} products={[ { id: "1", brand: "BrandA", name: "Product A", price: "$10", rating: 5, reviewCount: "10", imageSrc: "https://example.com/a.jpg" }, { id: "2", brand: "BrandB", name: "Product B", price: "$20", rating: 4, reviewCount: "20", imageSrc: "https://example.com/b.jpg" }, @@ -64,17 +65,22 @@ export default function Page() {