Update src/app/contact/page.tsx
This commit is contained in:
@@ -26,34 +26,22 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About Us", id: "/about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Portfolio",
|
||||
id: "/portfolio",
|
||||
},
|
||||
name: "Portfolio", id: "/portfolio"},
|
||||
{
|
||||
name: "Blog",
|
||||
id: "/blog",
|
||||
},
|
||||
name: "Blog", id: "/blog"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Pricing", id: "/pricing"},
|
||||
]}
|
||||
button={{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Contact Us", href: "/contact"}}
|
||||
brandName="Lawyer & Associates"
|
||||
/>
|
||||
</div>
|
||||
@@ -65,28 +53,17 @@ export default function LandingPage() {
|
||||
description="Please fill out the form below or use the contact information provided to reach our team. We look forward to assisting you."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Full Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Full Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email Address",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email Address", required: true,
|
||||
},
|
||||
{
|
||||
name: "subject",
|
||||
type: "text",
|
||||
placeholder: "Subject of Inquiry",
|
||||
required: true,
|
||||
name: "subject", type: "text", placeholder: "Subject of Inquiry", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Your Message",
|
||||
rows: 5,
|
||||
name: "message", placeholder: "Your Message", rows: 5,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199354.jpg"
|
||||
@@ -104,34 +81,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "call-response",
|
||||
value: "< 1 hr",
|
||||
title: "Call Response Time",
|
||||
items: [
|
||||
"Quick callback guarantee",
|
||||
"Prompt phone assistance",
|
||||
"Direct access to team",
|
||||
],
|
||||
id: "call-response", value: "< 1 hr", title: "Call Response Time", items: [
|
||||
"Quick callback guarantee", "Prompt phone assistance", "Direct access to team"],
|
||||
},
|
||||
{
|
||||
id: "email-response",
|
||||
value: "< 4 hrs",
|
||||
title: "Email Response Time",
|
||||
items: [
|
||||
"Timely email replies",
|
||||
"Detailed written communications",
|
||||
"Clarifying complex issues",
|
||||
],
|
||||
id: "email-response", value: "< 4 hrs", title: "Email Response Time", items: [
|
||||
"Timely email replies", "Detailed written communications", "Clarifying complex issues"],
|
||||
},
|
||||
{
|
||||
id: "office-hours",
|
||||
value: "M-F 9-5",
|
||||
title: "Office Hours Support",
|
||||
items: [
|
||||
"Availability for walk-ins",
|
||||
"Scheduled appointments",
|
||||
"Extended hours by request",
|
||||
],
|
||||
id: "office-hours", value: "M-F 9-5", title: "Office Hours Support", items: [
|
||||
"Availability for walk-ins", "Scheduled appointments", "Extended hours by request"],
|
||||
},
|
||||
]}
|
||||
title="Our Commitment to Communication"
|
||||
@@ -143,66 +102,41 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Corporate Law",
|
||||
href: "/services#corporate",
|
||||
},
|
||||
label: "Corporate Law", href: "/services#corporate"},
|
||||
{
|
||||
label: "Family Law",
|
||||
href: "/services#family",
|
||||
},
|
||||
label: "Family Law", href: "/services#family"},
|
||||
{
|
||||
label: "Real Estate",
|
||||
href: "/services#realestate",
|
||||
},
|
||||
label: "Real Estate", href: "/services#realestate"},
|
||||
{
|
||||
label: "Civil Litigation",
|
||||
href: "/services#litigation",
|
||||
},
|
||||
label: "Civil Litigation", href: "/services#litigation"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Our Team",
|
||||
href: "/about#team",
|
||||
},
|
||||
label: "Our Team", href: "/about#team"},
|
||||
{
|
||||
label: "Case Portfolio",
|
||||
href: "/portfolio",
|
||||
},
|
||||
label: "Case Portfolio", href: "/portfolio"},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
label: "Blog", href: "/blog"},
|
||||
{
|
||||
label: "Pricing", href: "/pricing"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
label: "FAQ", href: "/faq"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user