Update src/app/contact/page.tsx

This commit is contained in:
2026-03-26 13:57:08 +00:00
parent 2b74036941
commit 2b163edd9b

View File

@@ -28,30 +28,16 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "home-link",
href: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "about-link",
href: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "services-link",
href: "/services",
},
name: "Services", id: "/services"},
{
name: "Contact",
id: "contact-link",
href: "/contact",
},
name: "Contact", id: "/contact"},
]}
button={{
text: "Book Your Free Consultation",
href: "/contact",
}}
text: "Book Your Free Consultation", href: "/contact"}}
brandName="Orderly Concepts Co"
/>
</div>
@@ -63,27 +49,16 @@ export default function LandingPage() {
description="Ready to transform your space? Fill out the form below, and we'll get back to you to discuss your needs and schedule a consultation."
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 (Optional)",
},
name: "phone", type: "tel", placeholder: "Phone Number (Optional)"},
]}
textarea={{
name: "message",
placeholder: "Tell us about your organizing needs...",
rows: 4,
name: "message", placeholder: "Tell us about your organizing needs...", rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-looking-plans_23-2148819849.jpg?_wi=4"
@@ -100,37 +75,20 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What areas do you serve?",
content: "We primarily serve Waxhaw, NC, and surrounding areas. Please contact us to confirm service availability in your specific location.",
},
id: "1", title: "What areas do you serve?", content: "We primarily serve Waxhaw, NC, and surrounding areas. Please contact us to confirm service availability in your specific location."},
{
id: "2",
title: "How long does a typical organizing project take?",
content: "Project durations vary depending on the scope and client needs. After an initial consultation, we provide an estimated timeline.",
},
id: "2", title: "How long does a typical organizing project take?", content: "Project durations vary depending on the scope and client needs. After an initial consultation, we provide an estimated timeline."},
{
id: "3",
title: "Do I need to be present during the organizing process?",
content: "While your input is valuable, especially during decluttering, your presence is flexible. We can work independently or collaboratively.",
},
id: "3", title: "Do I need to be present during the organizing process?", content: "While your input is valuable, especially during decluttering, your presence is flexible. We can work independently or collaboratively."},
{
id: "4",
title: "Are your cleaning products truly eco-friendly?",
content: "Yes, we exclusively use biodegradable, non-toxic, and sustainable cleaning products that are safe for your family, pets, and the environment.",
},
id: "4", title: "Are your cleaning products truly eco-friendly?", content: "Yes, we exclusively use biodegradable, non-toxic, and sustainable cleaning products that are safe for your family, pets, and the environment."},
{
id: "5",
title: "What is your cancellation policy?",
content: "Please refer to our detailed Terms and Conditions for information on our cancellation and rescheduling policies.",
},
id: "5", title: "What is your cancellation policy?", content: "Please refer to our detailed Terms and Conditions for information on our cancellation and rescheduling policies."},
]}
ctaTitle="Have More Questions?"
ctaDescription="We're here to help! Reach out directly if you can't find your answer below."
ctaButton={{
text: "Call Us Now",
href: "tel:+17045551234",
}}
text: "Call Us Now", href: "tel:+17045551234"}}
ctaIcon={Phone}
/>
</div>
@@ -139,21 +97,16 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
tag="Next Step"
tagIcon={Calendar}
title="Ready for an Organized Life?"
description="Schedule a free consultation today to discuss how we can bring calm and order to your home."
buttons={[
{
text: "Book a Free Consultation",
href: "/contact",
},
text: "Book a Free Consultation", href: "/contact"},
{
text: "Learn More",
href: "/services",
},
text: "Learn More", href: "/services"},
]}
/>
</div>
@@ -162,54 +115,33 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Professional Organizing",
href: "/services#organizing",
},
label: "Professional Organizing", href: "/services#organizing"},
{
label: "Home Management",
href: "/services#management",
},
label: "Home Management", href: "/services#management"},
{
label: "Eco-Friendly Cleaning",
href: "/services#cleaning",
},
label: "Eco-Friendly Cleaning", href: "/services#cleaning"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Testimonials",
href: "/about#testimonials",
},
label: "Testimonials", href: "/about#testimonials"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Blog",
href: "/blog",
},
label: "Blog", href: "/blog"},
{
label: "FAQs",
href: "/contact#faqs",
},
label: "FAQs", href: "/contact#faqs"},
{
label: "Tips & Guides",
href: "/resources",
},
label: "Tips & Guides", href: "/resources"},
],
},
]}