From 65c8aff1273dcc9c3cc4771fe706fd5b8ccf8881 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 12:28:50 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f18417a..721d7fd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -12,7 +12,7 @@ import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { User } from "lucide-react"; +import { User, MapPin, Phone, Clock } from "lucide-react"; export default function LandingPage() { return ( @@ -50,7 +50,7 @@ export default function LandingPage() { variant: "gradient-bars"}} title="Естетика та професіоналізм" description="Ваш шлях до досконалості та гармонії через преміальний догляд та професійні косметологічні процедури." - tag="Преміум догляд • Естетика • Львів" + tag="Преміум догляд • Естетика • Київ" buttons={[ { text: "Записатися", href: "#contact-form" }, { text: "Консультація", href: "https://t.me/example" }, @@ -114,9 +114,10 @@ export default function LandingPage() { testimonials={[ { id: "t1", name: "Анна", handle: "@anna", testimonial: "Найкращий догляд у місті, результат видно одразу!", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=200&auto=format&fit=crop" }, { id: "t2", name: "Вікторія", handle: "@vika", testimonial: "Дуже приємна атмосфера та справжні професіонали.", imageSrc: "https://images.unsplash.com/photo-1544005313-94ddf0286df2?q=80&w=200&auto=format&fit=crop" }, + { id: "t3", name: "Олена", handle: "@olena", testimonial: "Результати перевершили очікування, рекомендую!", imageSrc: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=200&auto=format&fit=crop" }, ]} title="Відгуки" - description="Наші клієнти про результати" + description="Що кажуть наші клієнти" /> @@ -138,15 +139,16 @@ export default function LandingPage() {
-
@@ -157,23 +159,19 @@ export default function LandingPage() { title="Контакти" tag="Зв'язок" metrics={[ - { id: "m1", value: "+38 099 000 00 00", description: "Телефон" }, - { id: "m2", value: "10:00–20:00", description: "Графік" }, - { id: "m3", value: "Львів, Центр", description: "Адреса" }, + { id: "m1", value: "+38 044 123 45 67", description: "Телефон" }, + { id: "m2", value: "10:00–20:00", description: "Графік роботи" }, + { id: "m3", value: "м. Київ, вул. Хрещатик, 1", description: "Адреса студії" }, ]} /> -- 2.49.1 From c0c4b0291e6662b3ec0b1341d5bce401abfa3302 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 12:28:50 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 22aec08..670450f 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,12 +10,12 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fbfbf7; - --card: #f0ede8; + --background: #fdfcf9; + --card: #f6f3f0; --foreground: #3a3430; --primary-cta: #8c7b70; --primary-cta-text: #FFFFFF; - --secondary-cta: #d5cdc7; + --secondary-cta: #fdfcf9; --secondary-cta-text: #FFFFFF; --accent: #c6bcae; --background-accent: #e8e1d9; -- 2.49.1