From 3174e3f8c6bbdf7e7421078558e35bb16150b98b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:59:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 237 ++++++++++++++++++----------------------------- 1 file changed, 91 insertions(+), 146 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ff457ae..5792daf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,10 @@ import ProductCardFour from "@/components/sections/product/ProductCardFour"; import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Sparkles, Award, Shield, Grid, TrendingUp, Mail, Facebook, Instagram, Linkedin, MessageCircle } from "lucide-react"; +import { Sparkles, Award, Shield, Grid, TrendingUp, Mail, HelpCircle, MessageCircle, Facebook, Instagram, Linkedin } from "lucide-react"; export default function HomePage() { return ( @@ -20,7 +21,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="small" sizing="mediumLargeSizeLargeTitles" - background="noise" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -31,7 +32,7 @@ export default function HomePage() { @@ -174,7 +121,7 @@ export default function HomePage() { tagAnimation="slide-up" imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_74190-4591.jpg" imageAlt="LuxeGadgets premium store display" - buttons={[{ text: "Shop Now", href: "/products" }]} + buttons={[{ text: "Shop Now", href: "#featured-products" }]} buttonAnimation="slide-up" useInvertedBackground={false} /> @@ -193,25 +140,44 @@ export default function HomePage() { tagAnimation="slide-up" negativeCard={{ items: [ - "Generic products", - "Unreliable sellers", - "Poor quality materials", - "Slow delivery", - ], + "Generic products", "Unreliable sellers", "Poor quality materials", "Slow delivery"], }} positiveCard={{ items: [ - "Premium phone cases & protective gear", - "Screen protectors & glass shields", - "Portable LED hand fans & coolers", - "Decorative LED strip lighting", - "Smart LED robots & gadgets", - "Modern electronic accessories", - ], + "Premium phone cases & protective gear", "Screen protectors & glass shields", "Portable LED hand fans & coolers", "Decorative LED strip lighting", "Smart LED robots & gadgets", "Modern electronic accessories"], }} /> + {/* Best Sellers */} +
+ +
+ {/* Testimonials Section */}
+
+ + {/* FAQ Section */} +
+
@@ -305,27 +258,19 @@ export default function HomePage() { socialLinks={[ { icon: Facebook, - href: "https://facebook.com/luxegadgets", - ariaLabel: "Follow us on Facebook", - }, + href: "https://facebook.com/luxegadgets", ariaLabel: "Follow us on Facebook"}, { icon: Instagram, - href: "https://instagram.com/luxegadgets", - ariaLabel: "Follow us on Instagram", - }, + href: "https://instagram.com/luxegadgets", ariaLabel: "Follow us on Instagram"}, { icon: Linkedin, - href: "https://linkedin.com/company/luxegadgets", - ariaLabel: "Follow us on LinkedIn", - }, + href: "https://linkedin.com/company/luxegadgets", ariaLabel: "Follow us on LinkedIn"}, { icon: MessageCircle, - href: "https://wa.me/258843012909", - ariaLabel: "Chat with us on WhatsApp", - }, + href: "https://wa.me/258843012909", ariaLabel: "Chat with us on WhatsApp"}, ]} /> ); -} \ No newline at end of file +} -- 2.49.1