Update src/app/contact/page.tsx

This commit is contained in:
2026-03-06 09:08:47 +00:00
parent 4fbc10d05a
commit 67dfa3ef31

View File

@@ -19,8 +19,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "/services" },
{ label: "Exterior Wash & Wax", href: "/services" },
{ label: "Full Detail Packages", href: "/services" },
@@ -28,8 +27,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
@@ -37,16 +35,14 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com/210pristinedetailing" },
{ label: "Call Us", href: "tel:2108488465" },
{ label: "Email", href: "mailto:info@210pristine.com" },
@@ -72,6 +68,7 @@ export default function ContactPage() {
navItems={navItems}
button={{ text: "Call Now", href: "tel:2108488465" }}
brandName="210Pristine"
buttonClassName="font-mulish"
/>
</div>
@@ -99,23 +96,14 @@ export default function ContactPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1",
value: "Phone",
description:
"(210) 848-8465 - Call us directly to speak with our team and book your service.",
},
id: "1", value: "Phone", description:
"(210) 848-8465 - Call us directly to speak with our team and book your service."},
{
id: "2",
value: "Email",
description:
"info@210pristine.com - Send us your questions and we'll respond within 24 hours.",
},
id: "2", value: "Email", description:
"info@210pristine.com - Send us your questions and we'll respond within 24 hours."},
{
id: "3",
value: "Service Area",
description:
"San Antonio & surrounding areas including Alamo Heights, Universal City, Live Oak, Helotes, and Converse.",
},
id: "3", value: "Service Area", description:
"San Antonio & surrounding areas including Alamo Heights, Universal City, Live Oak, Helotes, and Converse."},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -131,4 +119,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}