Add src/app/contact/page.tsx

This commit is contained in:
2026-03-10 19:50:13 +00:00
parent 7cb37eb833
commit e2fc6cf5b6

67
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="large"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Complete Detail"
navItems={[
{ name: "Services", id: "services" },
{ name: "Why Us", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "/contact" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Contact Complete Detail"
description="Get in touch with our professional detailing team in San Marcos, TX. We're ready to answer your questions and schedule your vehicle's transformation."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "phone", type: "tel", placeholder: "(512) 557-7649", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "vehicle", type: "text", placeholder: "Vehicle Make & Model", required: true }
]}
textarea={{
name: "message", placeholder: "Tell us about your detailing needs and preferred appointment time...", rows: 5,
required: true
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/spray-bottle-barber-shop_23-2148256970.jpg"
imageAlt="Professional detailing equipment and products"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Complete Detail"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Home", href: "/" }}
/>
</div>
</ThemeProvider>
);
}