Update src/app/contact/page.tsx

This commit is contained in:
2026-04-04 16:39:35 +00:00
parent 74827c813a
commit afe1692eb1

View File

@@ -7,7 +7,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -25,40 +25,24 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="ASLC Detailing"
button={{
text: "Book Now",
href: "/contact",
}}
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplit
tag="Contact"
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Ready to Transform Your Car?"
description="Drop us a message or give us a call to book your detail today."
imageSrc="http://img.b2bpic.net/free-photo/man-is-working-with-mosquito-wire-screen-installation_1150-6410.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/man-is-working-with-mosquito-wire-screen-installation_1150-6410.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -71,62 +55,18 @@ export default function LandingPage() {
title="Contact Tips"
description="How to prepare your vehicle for a professional detail."
blogs={[
{
id: "b1",
category: "Guide",
title: "Prep Your Car",
excerpt: "Easy steps to ensure best results.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg?_wi=7",
authorName: "Archie",
authorAvatar: "http://img.b2bpic.net/free-photo/man-buying-car-showroom_1303-14589.jpg",
date: "Oct 12",
},
{ id: "b1", category: "Guide", title: "Prep Your Car", excerpt: "Easy steps to ensure best results.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg", authorName: "Archie", authorAvatar: "http://img.b2bpic.net/free-photo/man-buying-car-showroom_1303-14589.jpg", date: "Oct 12" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }]}
logoText="ASLC Detailing"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}