Update src/app/page.tsx

This commit is contained in:
2026-03-03 16:19:33 +00:00
parent 5abe79987a
commit 3c61fa0803

View File

@@ -10,15 +10,14 @@ import TestimonialCardTwelve from "@/components/sections/testimonial/Testimonial
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Sparkles, ShoppingBag, TrendingUp, Heart, Award, Users, Star, Zap, Mail } from "lucide-react"; import { Sparkles, ShoppingBag, TrendingUp, Heart, Award, Users, Star, Zap } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
{ name: "Shop", id: "shop" }, { name: "Shop", id: "products" },
{ name: "Collections", id: "collections" }, { name: "Collections", id: "features" },
{ name: "About", id: "about" }, { name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact-cta" },
{ name: "Account", id: "account" },
]; ];
const footerColumns = [ const footerColumns = [
@@ -85,13 +84,13 @@ export default function HomePage() {
<HeroBillboard <HeroBillboard
title="Discover Your Style" title="Discover Your Style"
description="Curated collections of premium fashion for every occasion. From everyday essentials to exclusive designs, elevate your wardrobe with StyleHub." description="Curated collections of premium fashion for every occasion. From everyday essentials to exclusive designs, elevate your wardrobe with StyleHub."
background={{ variant: "plain" }} background={{ variant: "sparkles-gradient" }}
tag="New Arrivals" tag="New Arrivals"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Shop Now", href: "/shop" }, { text: "Shop Now", href: "/products" },
{ text: "View Collections", href: "/shop" }, { text: "View Collections", href: "/features" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/asian-woman-store-employee-arranging-new-designer-clothes-hangers_482257-118505.jpg" imageSrc="http://img.b2bpic.net/free-photo/asian-woman-store-employee-arranging-new-designer-clothes-hangers_482257-118505.jpg"
@@ -218,13 +217,15 @@ export default function HomePage() {
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="contact-cta" data-section="contact-cta">
<FooterBaseCard <div id="footer" data-section="footer">
logoText="StyleHub" <FooterBaseCard
copyrightText="© 2025 StyleHub. All rights reserved." logoText="StyleHub"
columns={footerColumns} copyrightText="© 2025 StyleHub. All rights reserved."
/> columns={footerColumns}
/>
</div>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }