From eb149c11569f844e1860e1aab729b7af5a7d3633 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 5 Jun 2026 19:58:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 134 ++++++++++++++++++++++++++++++++--------------- 1 file changed, 93 insertions(+), 41 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 60a6269..0dc99af 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,7 +14,9 @@ import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import { Leaf, TreePine, CalendarCheck, Image, Lightbulb, UserRoundCog, Building, Briefcase, Handshake, DollarSign, Sprout } from "lucide-react"; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import Link from "next/link"; +import { Leaf, TreePine, CalendarCheck, Image, Lightbulb, UserRoundCog, Building, Briefcase, Handshake, DollarSign, Sprout, MessageCircle, Send } from "lucide-react"; export default function LandscapingPage() { return ( @@ -31,7 +33,7 @@ export default function LandscapingPage() { headingFontWeight="semibold" > - + } useInvertedBackground={false} mediaAnimation="none" - buttonText="Send Message" - contentClassName="!grid-cols-1 max-w-[600px] mx-auto" - - mediaWrapperClassName="hidden" + buttonText="Отправить сообщение" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/map.png" + imageAlt="Location Map" + mediaPosition="left" inputs={[ - { name: "name", type: "text", placeholder: "Full Name", required: true }, - { name: "email", type: "email", placeholder: "Email Address", required: true }, - { name: "phone", type: "tel", placeholder: "Phone Number" }, + { name: "name", type: "text", placeholder: "Полное имя", required: true }, + { name: "email", type: "email", placeholder: "Адрес электронной почты", required: true }, + { name: "phone", type: "tel", placeholder: "Номер телефона" }, ]} multiSelect={{ - name: "service", label: "Select a Service", options: ["Landscape Design", "Hardscape & Softscape", "Lawn & Garden Care", "Smart Irrigation"], + name: "service", label: "Выберите услугу", options: ["Ландшафтный дизайн", "Твердые и мягкие ландшафты", "Уход за газоном и садом", "Умное орошение"], }} - textarea={{ name: "message", placeholder: "Tell us about your project...", rows: 4, required: true }} + textarea={{ name: "message", placeholder: "Расскажите о вашем проекте...", rows: 4, required: true }} /> @@ -315,33 +334,66 @@ export default function LandscapingPage() { + + {/* Floating conversion features */} +
+ + + Запись + + + + WhatsApp + + + + Telegram + +
); -- 2.49.1