Merge version_4 into main #23

Merged
bender merged 1 commits from version_4 into main 2026-03-03 05:04:37 +00:00

View File

@@ -8,6 +8,7 @@ import SplitAbout from "@/components/sections/about/SplitAbout";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import { Wind, Shield, Sparkles, Zap, Award, CheckCircle, Star } from "lucide-react";
export default function LandingPage() {
@@ -179,6 +180,24 @@ export default function LandingPage() {
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplitForm
title="Get in Touch"
description="Have questions about our services? Fill out the form below and our team will get back to you within 24 hours."
formFields={[
{ name: "name", label: "Full Name", type: "text", required: true },
{ name: "email", label: "Email Address", type: "email", required: true },
{ name: "phone", label: "Phone Number", type: "tel", required: false },
{ name: "service", label: "Service Type", type: "select", required: true, options: ["Exterior Wash", "Interior Detailing", "Ceramic Coating", "Paint Correction", "Engine Bay Cleaning"] },
{ name: "message", label: "Message", type: "textarea", required: true },
]}
submitButtonText="Send Message"
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=7"
imageAlt="Contact us"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=6"
@@ -199,7 +218,7 @@ export default function LandingPage() {
{ label: "About Us", href: "#features" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "Book Now", href: "#contact" },
{ label: "Contact", href: "#contact" },
{ label: "Contact", href: "#contact-form" },
],
},
{