Update src/app/page.tsx

This commit is contained in:
2026-03-10 16:39:37 +00:00
parent 36ea20d4da
commit 59b0acb93d

View File

@@ -11,7 +11,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Award, Coffee, Sparkles } from 'lucide-react';
import { Award, Coffee, Sparkles, Calendar } from 'lucide-react';
export default function LandingPage() {
return (
@@ -31,11 +31,11 @@ export default function LandingPage() {
<NavbarStyleApple
brandName="OUTLOOK"
navItems={[
{ name: "Услуги", id: "services" },
{ name: "Услуги", id: "pricing" },
{ name: "Команда", id: "team" },
{ name: "Отзывы", id: "testimonials" },
{ name: "Контакты", id: "contact" },
{ name: "Записаться", id: "booking" }
{ name: "Вопросы", id: "faq" },
{ name: "Контакты", id: "contact" }
]}
/>
</div>
@@ -228,12 +228,12 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<div id="booking" data-section="booking">
<ContactCenter
tag="Свяжитесь с нами"
tag="Запись в салон"
title="Готовы изменить свой имидж?"
description="Места быстро заполняются, как билеты на концерт Тейлор Свифт. Не ждите. Запишитесь прямо сейчас и получите бесплатный кофе с каждым визитом!"
tagIcon={Coffee}
tagIcon={Calendar}
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}
inputPlaceholder="Введите ваш телефон"
@@ -243,6 +243,21 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Свяжитесь с нами"
title="Остались вопросы?"
description="Мы всегда рады помочь. Напишите нам, позвоните или приходите в салон. Мы находимся внутри жилого комплекса, рядом с главным входом."
tagIcon={Coffee}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
inputPlaceholder="Введите ваш email"
buttonText="Отправить"
termsText="Ваши данные защищены и не будут переданы третьим лицам."
tagAnimation="opacity"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="OUTLOOK"
@@ -250,7 +265,7 @@ export default function LandingPage() {
{
title: "Навигация", items: [
{ label: "Главная", href: "/" },
{ label: "Услуги", href: "#services" },
{ label: "Услуги", href: "#pricing" },
{ label: "Команда", href: "#team" },
{ label: "Отзывы", href: "#testimonials" }
]
@@ -277,4 +292,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}