Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d06b72557 | |||
| af49c0da1c | |||
| 5be1b95459 |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #fff8f5;;
|
||||
--card: #fff0eb;;
|
||||
--foreground: #3d2c29;;
|
||||
--primary-cta: #e8a090;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #f5d5cc;;
|
||||
--background-accent: #f0c4b8;;
|
||||
--background: #010912;;
|
||||
--card: #152840;;
|
||||
--foreground: #e6f0ff;;
|
||||
--primary-cta: #cee7ff;;
|
||||
--secondary-cta: #0e1a29;;
|
||||
--accent: #3f5c79;;
|
||||
--background-accent: #004a93;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user