Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 17:19:12 +00:00
parent f106f095d9
commit 2126f32b41

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSizeMediumTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
background="aurora"
cardStyle="glass-depth"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Report Desk"
navItems={navItems}
button={{ text: "Start Your Free Pilot", href: "#contact" }}
button={{ text: "Start Your Free Pilot", href: "/contact" }}
/>
</div>
@@ -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: 24 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: 24 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() {
</div>
</ThemeProvider>
);
}
}