Update src/app/contact/page.tsx

This commit is contained in:
2026-03-04 10:02:32 +00:00
parent 6a3c702246
commit fcd60b50c9

View File

@@ -25,15 +25,13 @@ export default function ContactPage() {
<NavbarLayoutFloatingInline
brandName="LeanCore"
navItems={[
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Возможности", id: "features" },
{ name: "Цены", id: "pricing" },
{ name: "О нас", id: "about" },
{ name: "Контакты", id: "contact" },
]}
button={{
text: "Get Started",
href: "/contact",
}}
text: "Начать", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -42,32 +40,21 @@ export default function ContactPage() {
<ContactFaq
useInvertedBackground={false}
animationType="slide-up"
ctaTitle="Ready to Transform Your Business?"
ctaDescription="Let's schedule a personalized demo to see how LeanCore can streamline your operations and drive growth. Our team is standing by to help you get started."
ctaTitle="Готовы преобразовать ваш бизнес?"
ctaDescription="Давайте запланируем персональную демонстрацию, чтобы увидеть, как LeanCore может оптимизировать вашу работу и способствовать росту. Наша команда готова помочь вам начать."
ctaButton={{
text: "Book a Demo",
href: "https://calendly.com/leancore",
}}
text: "Забронировать демонстрацию", href: "https://calendly.com/leancore"}}
ctaIcon={Calendar}
faqs={[
{
id: "q1",
title: "How much can I save with LeanCore?",
content:
"Our customers typically see 30-40% reduction in operational costs within the first year, plus significant time savings through automation and workflow optimization.",
},
id: "q1", title: "Сколько я могу сэкономить с помощью LeanCore?", content:
"Наши клиенты обычно видят сокращение операционных затрат на 30-40% в течение первого года, плюс значительная экономия времени благодаря автоматизации и оптимизации рабочих процессов."},
{
id: "q2",
title: "What's your onboarding process?",
content:
"We provide comprehensive onboarding including system setup, team training, data migration, and dedicated support to ensure successful implementation and adoption.",
},
id: "q2", title: "Каков ваш процесс введения в эксплуатацию?", content:
"Мы предоставляем полное введение в эксплуатацию, включая настройку системы, обучение команды, миграцию данных и проведенную поддержку для обеспечения успешного внедрения и внедрения."},
{
id: "q3",
title: "Do you offer custom training?",
content:
"Yes, we provide custom training sessions tailored to your team's needs and skill levels. We also maintain an extensive knowledge base and video library for self-paced learning.",
},
id: "q3", title: "Предлагаете ли вы пользовательское обучение?", content:
"Да, мы проводим пользовательские сеансы обучения, адаптированные к потребностям и уровням навыков вашей команды. Мы также поддерживаем обширную базу знаний и видеотеку для самостоятельного обучения."},
]}
/>
</div>
@@ -75,35 +62,32 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-vector/blue-technology-background_1035-1691.jpg?_wi=4"
imageAlt="Footer Background"
imageAlt="Фоновое изображение подвала"
logoText="LeanCore"
copyrightText="© 2025 LeanCore Technologies. All rights reserved."
copyrightText="© 2025 LeanCore Technologies. Все права защищены."
columns={[
{
title: "Product",
items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "API Docs", href: "#" },
title: "Продукт", items: [
{ label: "Возможности", href: "#features" },
{ label: "Цены", href: "#pricing" },
{ label: "Безопасность", href: "#" },
{ label: "Документация API", href: "#" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "/contact" },
title: "Компания", items: [
{ label: "О нас", href: "/about" },
{ label: "Блог", href: "#" },
{ label: "Карьера", href: "#" },
{ label: "Контакты", href: "/contact" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Status Page", href: "#" },
title: "Юридическая информация", items: [
{ label: "Политика конфиденциальности", href: "#" },
{ label: "Условия обслуживания", href: "#" },
{ label: "Политика использования файлов cookie", href: "#" },
{ label: "Страница статуса", href: "#" },
],
},
]}
@@ -111,4 +95,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}