Update src/app/contact/page.tsx

This commit is contained in:
2026-03-10 15:00:50 +00:00
parent 4a70cc363e
commit bf5c4e471b

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import Link from 'next/link';
import { MessageCircle } from 'lucide-react';
export default function ContactPage() {
@@ -12,7 +11,7 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "Find Workers", id: "/workers" },
{ name: "Cities", id: "/cities" },
{ name: "How It Works", id: "/features" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
@@ -34,41 +33,29 @@ export default function ContactPage() {
navItems={navItems}
brandName="FindWorker"
button={{
text: "Post a Job",
href: "https://findworker.example.com/post-job",
}}
text: "Post a Job", href: "https://findworker.example.com/post-job"}}
/>
</div>
<div id="contact" data-section="contact" className="py-20">
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Get in Touch"
ctaDescription="Have questions? Our support team is ready to help you find the right workers or post your job."
ctaButton={{
text: "Send Message",
href: "https://findworker.example.com/contact",
}}
text: "Send Message", href: "https://findworker.example.com/contact"}}
ctaIcon={MessageCircle}
faqs={[
{
id: "1",
title: "How quickly can I find a worker?",
content: "Most jobs receive applications within 24 hours. Our verification system ensures you get qualified candidates fast."
id: "1", title: "How quickly can I find a worker?", content: "Most jobs receive applications within 24 hours. Our verification system ensures you get qualified candidates fast."
},
{
id: "2",
title: "Can I negotiate rates with workers?",
content: "Yes, all negotiations happen directly between you and the worker through our secure messaging platform."
id: "2", title: "Can I negotiate rates with workers?", content: "Yes, all negotiations happen directly between you and the worker through our secure messaging platform."
},
{
id: "3",
title: "Do you handle payment processing?",
content: "We recommend using secure payment methods. Workers and employers can agree on payment terms directly."
id: "3", title: "Do you handle payment processing?", content: "We recommend using secure payment methods. Workers and employers can agree on payment terms directly."
},
{
id: "4",
title: "What if a worker cancels?",
content: "We have backup recommendations and a penalty system to ensure reliability. Multiple replacements are available within hours."
id: "4", title: "What if a worker cancels?", content: "We have backup recommendations and a penalty system to ensure reliability. Multiple replacements are available within hours."
},
]}
useInvertedBackground={false}