Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-19 19:08:12 +00:00

View File

@@ -12,7 +12,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Shield, CheckCircle, Lock, Zap, DollarSign, User, CheckSquare, Award, MessageCircle, Mail, Phone, Briefcase, Store } from 'lucide-react'; import { Shield, CheckCircle, Lock, Zap, DollarSign, User, CheckSquare, Award, MessageCircle, Mail, Phone, Briefcase, Store } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
@@ -373,16 +373,42 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterBaseReveal
logoText="VORONOI Logistic" columns={[
copyrightText="© 20242025 VORONOI Logistic. Все права защищены." {
socialLinks={[ title: "Услуги", items: [
{ icon: MessageCircle, href: "https://t.me/voronoi_logistics", ariaLabel: "Telegram" }, { label: "Доставка из Китая", href: "#services" },
{ icon: Mail, href: "mailto:info@voronoi.ru", ariaLabel: "Email" }, { label: "Таможенное оформление", href: "#services" },
{ icon: Phone, href: "tel:+7XXXXXXXXXX", ariaLabel: "Телефон" } { label: "Сертификация товаров", href: "#services" },
{ label: "Консультация", href: "#lead-magnet" }
]
},
{
title: "О нас", items: [
{ label: "Как мы работаем", href: "#workflow" },
{ label: "Наша команда", href: "#about" },
{ label: "Опыт", href: "#metrics" },
{ label: "Отзывы", href: "#testimonials" }
]
},
{
title: "Контакты", items: [
{ label: "Telegram", href: "https://t.me/voronoi_logistics" },
{ label: "Email", href: "mailto:info@voronoi.ru" },
{ label: "Получить расчет", href: "#final-cta" }
]
},
{
title: "Полезное", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Белый импорт", href: "#why-white" },
{ label: "Партнеры", href: "#partners" }
]
}
]} ]}
copyrightText="© 20242025 VORONOI Logistic. Все права защищены."
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }