Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-03-22 10:27:59 +00:00

View File

@@ -9,7 +9,7 @@ import FeatureHoverPattern from "@/components/sections/feature/featureHoverPatte
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import FaqDouble from "@/components/sections/faq/FaqDouble";
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";
export default function FashionStorePage() {
@@ -254,18 +254,37 @@ export default function FashionStorePage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="The Fashion Store"
copyrightText="© 2025 The Fashion Store. All rights reserved. | Jharoda Burari Marg, Delhi"
socialLinks={[
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Follow us on Facebook" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
{ icon: Phone, href: "tel:+919650450412", ariaLabel: "Call us" },
{ icon: MapPin, href: "#contact", ariaLabel: "Visit store location" }
<FooterBaseReveal
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Story", href: "#about" },
{ label: "Blog", href: "#" },
{ 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"
/>
</div>
</ThemeProvider>
);
}
}