From 2126f32b41b064cea235450879aafce245319073 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:19:12 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 73 ++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 47 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7b1cc3e..e830705 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -9,37 +9,34 @@ import FooterBase from "@/components/sections/footer/FooterBase"; export default function ContactPage() { const navItems = [ - { name: "Features", id: "features" }, - { name: "How It Works", id: "product" }, - { name: "Pricing", id: "pricing" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Features", id: "/features" }, + { name: "How It Works", id: "/" }, + { name: "Pricing", id: "/pricing" }, + { name: "FAQ", id: "/contact" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Features", href: "features" }, - { label: "Pricing", href: "pricing" }, + title: "Product", items: [ + { label: "Features", href: "/features" }, + { label: "Pricing", href: "/pricing" }, { label: "Security", href: "#" }, { label: "Integrations", href: "#" }, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Documentation", href: "#" }, { label: "API Reference", href: "#" }, { label: "Blog", href: "#" }, - { label: "Support", href: "contact" }, + { label: "Support", href: "/contact" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, - { label: "Contact", href: "contact" }, + { label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, ], @@ -48,22 +45,22 @@ export default function ContactPage() { return ( @@ -73,35 +70,17 @@ export default function ContactPage() { sideDescription="Everything you need to know about Report Desk implementation and operation." faqs={[ { - id: "faq-1", - title: "Do field staff need to download an app?", - content: "No. Report Desk is web-based and mobile-responsive. Field operators simply scan a QR code with any smartphone browser. No installation, no onboarding friction.", - }, + id: "faq-1", title: "Do field staff need to download an app?", content: "No. Report Desk is web-based and mobile-responsive. Field operators simply scan a QR code with any smartphone browser. No installation, no onboarding friction."}, { - id: "faq-2", - title: "What machines does Report Desk support?", - content: "Report Desk works with any equipment: coin-operated washers/dryers, vending machines, ATMs, or custom machinery. You control the data fields and workflows.", - }, + id: "faq-2", title: "What machines does Report Desk support?", content: "Report Desk works with any equipment: coin-operated washers/dryers, vending machines, ATMs, or custom machinery. You control the data fields and workflows."}, { - id: "faq-3", - title: "How long does implementation take?", - content: "Typical deployment: 2–4 weeks. We handle QR code generation, integration setup, and team training. Your technicians can start reporting in days.", - }, + id: "faq-3", title: "How long does implementation take?", content: "Typical deployment: 2–4 weeks. We handle QR code generation, integration setup, and team training. Your technicians can start reporting in days."}, { - id: "faq-4", - title: "Does Report Desk integrate with our existing tools?", - content: "Yes. We support Zapier, API connections, and CSV exports. Connect to Connecteam, Slack, email, or custom systems. Your data flows where it needs to go.", - }, + id: "faq-4", title: "Does Report Desk integrate with our existing tools?", content: "Yes. We support Zapier, API connections, and CSV exports. Connect to Connecteam, Slack, email, or custom systems. Your data flows where it needs to go."}, { - id: "faq-5", - title: "What if connectivity is poor in the field?", - content: "Report Desk works offline. Reports are cached locally and synced automatically when connectivity returns. No data is lost.", - }, + id: "faq-5", title: "What if connectivity is poor in the field?", content: "Report Desk works offline. Reports are cached locally and synced automatically when connectivity returns. No data is lost."}, { - id: "faq-6", - title: "How secure is maintenance data?", - content: "Industry-standard encryption (TLS 1.3). SOC 2 Type II compliant. Role-based access control. Your data never leaves secure servers.", - }, + id: "faq-6", title: "How secure is maintenance data?", content: "Industry-standard encryption (TLS 1.3). SOC 2 Type II compliant. Role-based access control. Your data never leaves secure servers."}, ]} textPosition="left" useInvertedBackground={false} @@ -115,7 +94,7 @@ export default function ContactPage() { tag="Get Started" title="Start Your Free Pilot Today" description="No credit card required. See Report Desk transform your operations in 2 weeks. Schedule a brief demo with our team." - background={{ variant: "circleGradient" }} + background={{ variant: "aurora" }} useInvertedBackground={false} inputPlaceholder="Enter your work email" buttonText="Start Free Pilot" @@ -132,4 +111,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +}