3 Commits

Author SHA1 Message Date
0e05378993 Merge version_2 into main
Merge version_2 into main
2026-03-19 19:08:12 +00:00
c8abb6b00a Update src/app/page.tsx 2026-03-19 19:08:07 +00:00
4de0181ad3 Merge version_1 into main
Merge version_1 into main
2026-03-19 19:03:28 +00:00

View File

@@ -12,7 +12,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
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';
export default function LandingPage() {
@@ -373,16 +373,42 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="VORONOI Logistic"
copyrightText="© 20242025 VORONOI Logistic. Все права защищены."
socialLinks={[
{ icon: MessageCircle, href: "https://t.me/voronoi_logistics", ariaLabel: "Telegram" },
{ icon: Mail, href: "mailto:info@voronoi.ru", ariaLabel: "Email" },
{ icon: Phone, href: "tel:+7XXXXXXXXXX", ariaLabel: "Телефон" }
<FooterBaseReveal
columns={[
{
title: "Услуги", items: [
{ label: "Доставка из Китая", href: "#services" },
{ label: "Таможенное оформление", href: "#services" },
{ 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>
</ThemeProvider>
);
}
}