Update src/app/contact/page.tsx
This commit is contained in:
@@ -6,8 +6,9 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import Link from "next/link";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -22,56 +23,56 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Naoti Car Wash"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Naoti Car Wash"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Ready for a Spotless Ride?"
|
||||
description="Visit us in Camăr or book online for a priority slot."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Special requests?", rows: 4, required: false }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-blurred-men-toilet_1339-6371.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Ready for a Spotless Ride?"
|
||||
description="Visit us in Camăr or book online for a priority slot."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Special requests?", rows: 4, required: false }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-blurred-men-toilet_1339-6371.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Booking Terms & Conditions"
|
||||
sections={[
|
||||
{
|
||||
heading: "Our Promise", content: { text: "We guarantee 100% satisfaction with every wash." },
|
||||
},
|
||||
{
|
||||
heading: "Visit Requirements", content: { items: ["Please remove all loose personal belongings.", "Ensure your vehicle is safe to enter a high-pressure bay.", "Contact our team if you have a special vehicle body kit."] },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Booking Terms & Conditions"
|
||||
sections={[
|
||||
{
|
||||
heading: "Our Promise", content: { type: "paragraph", text: "We guarantee 100% satisfaction with every wash." },
|
||||
},
|
||||
{
|
||||
heading: "Visit Requirements", content: { type: "list", items: ["Please remove all loose personal belongings.", "Ensure your vehicle is safe to enter a high-pressure bay.", "Contact our team if you have a special vehicle body kit."] },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Naoti Car Wash"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Services", href: "/services" }, { label: "Booking", href: "/contact" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2025 Naoti Car Wash | Camăr, 457060 Sălaj"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Naoti Car Wash"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Services", href: "/services" }, { label: "Booking", href: "/contact" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2025 Naoti Car Wash | Camăr, 457060 Sălaj"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user