Update src/app/contact/page.tsx

This commit is contained in:
2026-05-02 00:42:49 +00:00
parent 4084c862c0
commit 36df7f9b39

View File

@@ -6,7 +6,9 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
export default function ContactPage() {
const inputClassName = "bg-[#FFFFFF] border border-[#D0CCBC] text-[#1A3A5C] placeholder:text-gray-500";
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -24,18 +26,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "How It Works", id: "/how-it-works"},
{
name: "Services", id: "/services"},
{
name: "About", id: "/about"},
{
name: "Resources", id: "/blog"},
{
name: "Contact", id: "/contact"},
{ name: "Home", id: "/" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Resources", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
@@ -47,24 +43,14 @@ export default function LandingPage() {
title="Let's Talk, No Pressure"
description="Most families say they wish they'd called sooner. We're here to listen."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
},
{
name: "email", type: "email", placeholder: "Your Email", required: true,
},
{
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
},
{ name: "name", type: "text", placeholder: "Your Name", required: true, className: inputClassName },
{ name: "email", type: "email", placeholder: "Your Email", required: true, className: inputClassName },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true, className: inputClassName },
]}
multiSelect={{
name: "county", label: "Which County are you in?", options: [
"Orange County", "Los Angeles", "Riverside", "San Bernardino", "Other"],
}}
textarea={{
name: "message", placeholder: "Tell us a little about your situation", rows: 4,
}}
multiSelect={{ name: "county", label: "Which County are you in?", options: ["Orange County", "Los Angeles", "Riverside", "San Bernardino", "Other"], className: inputClassName }}
textarea={{ name: "message", placeholder: "Tell us a little about your situation", rows: 4, className: inputClassName }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1777680642863-khh8wvic.jpg?_wi=1"
inputClassName={inputClassName}
/>
</div>
@@ -74,14 +60,11 @@ export default function LandingPage() {
title="Contact Us"
description="We're here to listen."
inputs={[
{
name: "name", type: "text", placeholder: "Name", required: true,
},
{
name: "email", type: "email", placeholder: "Email", required: true,
},
{ name: "name", type: "text", placeholder: "Name", required: true, className: inputClassName },
{ name: "email", type: "email", placeholder: "Email", required: true, className: inputClassName },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1777680642863-khh8wvic.jpg?_wi=2"
inputClassName={inputClassName}
/>
</div>
@@ -90,35 +73,25 @@ export default function LandingPage() {
logoText="Palante STS"
columns={[
{
title: "Company", items: [
{
label: "About", href: "/about"},
{
label: "Services", href: "/services"},
{
label: "How It Works", href: "/how-it-works"},
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "How It Works", href: "/how-it-works" },
],
},
{
title: "Contact", items: [
{
label: "Schedule Consultation", href: "/contact"},
{
label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com"},
{
label: "Text/Call: (213) 706-0093", href: "tel:2137060093"},
title: "Contact", items: [
{ label: "Schedule Consultation", href: "/contact" },
{ label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" },
{ label: "Text/Call: (213) 706-0093", href: "tel:2137060093" },
],
},
{
title: "Service Areas", items: [
{
label: "Orange County", href: "#"},
{
label: "Los Angeles", href: "#"},
{
label: "Riverside", href: "#"},
{
label: "San Bernardino", href: "#"},
title: "Service Areas", items: [
{ label: "Orange County", href: "#" },
{ label: "Los Angeles", href: "#" },
{ label: "Riverside", href: "#" },
{ label: "San Bernardino", href: "#" },
],
},
]}