Update src/app/page.tsx

This commit is contained in:
2025-12-29 11:31:38 +00:00
parent 5be1b95459
commit af49c0da1c

View File

@@ -7,9 +7,9 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterBase from '@/components/sections/footer/FooterBase';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { Sparkles, Gem, Hammer, Clock, Star, Heart, HelpCircle, Instagram, Facebook, Globe } from 'lucide-react';
import { Sparkles, Gem, Hammer, Clock, Star, Heart, HelpCircle } from 'lucide-react';
export default function LandingPage() {
return (
@@ -245,26 +245,35 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Visione"
copyrightText="© 2025 Visione Eyewear. Handcrafted in Italy with passion."
socialLinks={[
<FooterBase
columns={[
{
icon: Instagram,
href: "https://instagram.com",
ariaLabel: "Instagram"
title: "Company",
items: [
{ label: "About Us", href: "about" },
{ label: "Contact", href: "contact" },
{ label: "Career", href: "#" }
]
},
{
icon: Facebook,
href: "https://facebook.com",
ariaLabel: "Facebook"
title: "Products",
items: [
{ label: "Sunglasses", href: "#" },
{ label: "Optical Frames", href: "#" },
{ label: "Readers", href: "#" }
]
},
{
icon: Globe,
href: "https://example.com",
ariaLabel: "Website"
title: "Support",
items: [
{ label: "FAQ", href: "faq" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" }
]
}
]}
logoText="Visione"
copyrightText="© 2025 Visione Eyewear. Handcrafted in Italy with passion."
/>
</div>
</ThemeProvider>