3 Commits

Author SHA1 Message Date
64c278cc6c Update src/app/page.tsx 2026-03-23 17:20:11 +00:00
de8d403f20 Update src/app/page.tsx 2026-03-23 17:19:26 +00:00
16f8812247 Merge version_5 into main
Merge version_5 into main
2026-03-23 17:16:46 +00:00

View File

@@ -11,6 +11,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import { Award, CheckCircle, HelpCircle, Sparkles, Star, Zap } from 'lucide-react';
export default function LandingPage() {
@@ -32,6 +33,7 @@ export default function LandingPage() {
brandName="AIInfluencer"
navItems={[
{ name: "О решении", id: "features" },
{ name: "Детали", id: "features-new" },
{ name: "Возможности", id: "about" },
{ name: "Цены", id: "pricing" },
{ name: "Кейсы", id: "testimonials" },
@@ -94,8 +96,24 @@ export default function LandingPage() {
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BJ5dWgRXPkFHxu1a8nQ1RJCGs2/tablet-screen-with-content-scheduling-and-1774194910006-21820609.png", imageAlt: "Tablet screen with content scheduling" }
}
]}
buttons={[{ text: "Узнать больше", href: "#about" }]}
buttonAnimation="slide-up"
buttons={[{ text: "Узнать больше", href: "#about" }]} buttonAnimation="slide-up"
/>
</div>
<div id="features-new" data-section="features-new">
<FeatureBorderGlow
title="Продвинутые возможности"
description="Оцените все преимущества работы с AI-инфлюенсерами."
tag="Технологии"
tagIcon={Zap}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ icon: Sparkles, title: "Уникальные образы", description: "Создайте цифровые аватары, которые идеально соответствуют эстетике вашего бренда." },
{ icon: CheckCircle, title: "Мультиформатный контент", description: "Получайте фото и видео для любых платформ — от соцсетей до рекламных кампаний." },
{ icon: Award, title: "Полное владение", description: "Все права на созданных персонажей и контент принадлежат только вам." }
]}
/>
</div>
@@ -109,8 +127,7 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BJ5dWgRXPkFHxu1a8nQ1RJCGs2/a-sophisticated-infographic-or-diagram-s-1774194910201-1305e1bb.png"
imageAlt="Процесс создания ИИ-инфлюенсера"
useInvertedBackground={false}
buttons={[{ text: "Начать проект", href: "#contact" }]}
buttonAnimation="blur-reveal"
buttons={[{ text: "Начать проект", href: "#contact" }]} buttonAnimation="blur-reveal"
/>
</div>
@@ -147,8 +164,7 @@ export default function LandingPage() {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BJ5dWgRXPkFHxu1a8nQ1RJCGs2/enterprise-solution-showcase-unlimited-c-1774194910255-311f8351.png", imageAlt: "Пакет Enterprise"
}
]}
buttons={[{ text: "Посмотреть все возможности", href: "#features" }]}
/>
buttons={[{ text: "Посмотреть все возможности", href: "#features" }]} />
</div>
<div id="testimonials" data-section="testimonials">
@@ -188,8 +204,7 @@ export default function LandingPage() {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BJ5dWgRXPkFHxu1a8nQ1RJCGs2/professional-headshot-of-a-beauty-or-lif-1774194911435-f531bff5.png"
}
]}
buttons={[{ text: "Смотреть больше примеров", href: "#contact" }]}
/>
buttons={[{ text: "Смотреть больше примеров", href: "#contact" }]} />
</div>
<div id="social-proof" data-section="social-proof">
@@ -207,8 +222,7 @@ export default function LandingPage() {
useInvertedBackground={true}
speed={40}
showCard={true}
buttons={[{ text: "Присоединиться к партнерам", href: "#contact" }]}
/>
buttons={[{ text: "Присоединиться к партнерам", href: "#contact" }]} />
</div>
<div id="faq" data-section="faq">
@@ -241,8 +255,7 @@ export default function LandingPage() {
id: "6", title: "Можно ли получить белый лейбл (white-label) решение?", content: "Да, для агентств и крупных компаний мы предоставляем white-label решение с вашим брендингом. Свяжитесь с нами для обсуждения условий и интеграции API."
}
]}
buttons={[{ text: "Остались вопросы?", href: "#contact" }]}
/>
buttons={[{ text: "Остались вопросы?", href: "#contact" }]} />
</div>
<div id="contact" data-section="contact">
@@ -304,4 +317,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}