Update src/app/contact/page.tsx
This commit is contained in:
@@ -25,29 +25,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "How It Works",
|
||||
id: "/how-it-works",
|
||||
},
|
||||
name: "How It Works", id: "/how-it-works"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/blog",
|
||||
},
|
||||
name: "Resources", id: "/blog"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
/>
|
||||
@@ -60,39 +48,21 @@ export default function LandingPage() {
|
||||
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: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "county",
|
||||
label: "Which County are you in?",
|
||||
options: [
|
||||
"Orange County",
|
||||
"Los Angeles",
|
||||
"Riverside",
|
||||
"San Bernardino",
|
||||
"Other",
|
||||
],
|
||||
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,
|
||||
name: "message", placeholder: "Tell us a little about your situation", rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-businessman-working-office-analyzing-business-plans-there-are-people-background_637285-187.jpg?_wi=2"
|
||||
/>
|
||||
@@ -105,16 +75,10 @@ export default function LandingPage() {
|
||||
description="We're here to listen."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Email", required: true,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-businessman-working-office-analyzing-business-plans-there-are-people-background_637285-187.jpg?_wi=3"
|
||||
@@ -126,58 +90,35 @@ export default function LandingPage() {
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "How It Works",
|
||||
href: "/how-it-works",
|
||||
},
|
||||
label: "How It Works", href: "/how-it-works"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Schedule Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Schedule Consultation", href: "/contact"},
|
||||
{
|
||||
label: "Email: hello@gopalante.com",
|
||||
href: "mailto:hello@gopalante.com",
|
||||
},
|
||||
label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com"},
|
||||
{
|
||||
label: "Text/Call: (555) 555-5555",
|
||||
href: "tel:5555555555",
|
||||
},
|
||||
label: "Text/Call: (213) 706-0093", href: "tel:2137060093"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Service Areas",
|
||||
items: [
|
||||
title: "Service Areas", items: [
|
||||
{
|
||||
label: "Orange County",
|
||||
href: "#",
|
||||
},
|
||||
label: "Orange County", href: "#"},
|
||||
{
|
||||
label: "Los Angeles",
|
||||
href: "#",
|
||||
},
|
||||
label: "Los Angeles", href: "#"},
|
||||
{
|
||||
label: "Riverside",
|
||||
href: "#",
|
||||
},
|
||||
label: "Riverside", href: "#"},
|
||||
{
|
||||
label: "San Bernardino",
|
||||
href: "#",
|
||||
},
|
||||
label: "San Bernardino", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -187,4 +128,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user