From c9eb4f4e71492e643fcdfc5a43d2926f8bac1508 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 15:43:48 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 83 +++++++++++++++--------------------------------- 1 file changed, 25 insertions(+), 58 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 72b39fe..b95c19a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,10 +6,10 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, Smile, Star, Mail } from 'lucide-react'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Sparkles, Smile, Star, Mail, MessageCircle, Phone, MapPin } from 'lucide-react'; export default function LuxuryDentistPage() { return ( @@ -35,7 +35,7 @@ export default function LuxuryDentistPage() { { name: "Контакты", id: "contact" } ]} button={{ - text: "Записаться", href: "#contact" + text: "Записаться", onClick: () => window.open('https://wa.me/79999999999', '_blank') }} /> @@ -58,7 +58,7 @@ export default function LuxuryDentistPage() { enableKpiAnimation={true} buttons={[ { text: "Наши услуги", href: "#services" }, - { text: "Записаться на прием", href: "#contact" } + { text: "Записаться на прием", onClick: () => window.open('https://wa.me/79999999999', '_blank') } ]} mediaAnimation="slide-up" /> @@ -88,9 +88,6 @@ export default function LuxuryDentistPage() { reviewCount: "200", imageSrc: "https://pixabay.com/get/g1d3ff68a2658a258820fec4c35bd2d41aa96142470bf1eb492524fdb68eca93729eac47b58d487bf8ffe8655ffad31e45344ba6aad8b77a68d27c92c2edb1fee_1280.jpg", imageAlt: "Отбеливание зубов" } ]} - buttons={[ - { text: "Посмотреть все услуги", href: "#contact" } - ]} /> @@ -101,8 +98,7 @@ export default function LuxuryDentistPage() { ]} useInvertedBackground={false} buttons={[ - { text: "Наши врачи", href: "#features" }, - { text: "Записаться", href: "#contact" } + { text: "Узнать больше", href: "#features" } ]} /> @@ -127,73 +123,44 @@ export default function LuxuryDentistPage() {
-
- window.open(`https://wa.me/79999999999?text=Здравствуйте! Меня интересует консультация. Email: ${email}`, '_blank')} + buttonText="Написать в WhatsApp" />
); -} +} \ No newline at end of file -- 2.49.1 From 39590bc1f1c4a0e2df82ef123df39cdb20f9107a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 15:43:48 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index a25430f..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From 18b9c8510989c944ab3e8388dc3c37464d78877f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 15:43:49 +0000 Subject: [PATCH 3/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 676c0e8..1528342 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #0c1325; - --primary-cta: #0798ff; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #000612e6; + --primary-cta: #15479c; --primary-cta-text: #f7f6f7; - --secondary-cta: #ffffff; + --secondary-cta: #f9f9f9; --secondary-cta-text: #0c1325; - --accent: #93c7ff; - --background-accent: #a8cde8; + --accent: #e2e2e2; + --background-accent: #c4c4c4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1