1 Commits

Author SHA1 Message Date
33e8f66ae5 Update src/app/page.tsx 2026-03-22 10:27:54 +00:00

View File

@@ -9,7 +9,7 @@ import FeatureHoverPattern from "@/components/sections/feature/featureHoverPatte
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import FaqDouble from "@/components/sections/faq/FaqDouble"; import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterCard from "@/components/sections/footer/FooterCard"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, DollarSign, Facebook, Grid, HelpCircle, Heart, Instagram, MapPin, MessageCircle, Phone, Shield, ShoppingBag, Sparkles, Star, Tag, Users, Zap } from "lucide-react"; import { Award, DollarSign, Facebook, Grid, HelpCircle, Heart, Instagram, MapPin, MessageCircle, Phone, Shield, ShoppingBag, Sparkles, Star, Tag, Users, Zap } from "lucide-react";
export default function FashionStorePage() { export default function FashionStorePage() {
@@ -254,18 +254,37 @@ export default function FashionStorePage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterBaseReveal
logoText="The Fashion Store" columns={[
copyrightText="© 2025 The Fashion Store. All rights reserved. | Jharoda Burari Marg, Delhi" {
socialLinks={[ title: "Company", items: [
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Follow us on Facebook" }, { label: "About Us", href: "#about" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" }, { label: "Our Story", href: "#about" },
{ icon: Phone, href: "tel:+919650450412", ariaLabel: "Call us" }, { label: "Blog", href: "#" },
{ icon: MapPin, href: "#contact", ariaLabel: "Visit store location" } { label: "Careers", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Contact Us", href: "#contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Returns", href: "#faq" },
{ label: "Track Order", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Phone", href: "tel:+919650450412" },
{ label: "Visit Store", href: "#contact" }
]
}
]} ]}
copyrightText="© 2025 The Fashion Store. All rights reserved. | Jharoda Burari Marg, Delhi"
ariaLabel="Site footer - The Fashion Store contact and links" ariaLabel="Site footer - The Fashion Store contact and links"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }