"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroCentered from "@/components/sections/hero/HeroCentered"; import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Mail, Phone, MapPin, Clock } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Features", id: "#features" }, { name: "Workflow", id: "#workflow" }, { name: "Security", id: "#security" }, { name: "Roles", id: "#roles" }, { name: "Contact", id: "#contact" }, ]; const footerColumns = [ { items: [ { label: "Features", href: "#features" }, { label: "Workflow", href: "#workflow" }, { label: "Security", href: "#security" }, ], }, { items: [ { label: "User Roles", href: "#roles" }, { label: "Pricing", href: "#pricing" }, { label: "Contact", href: "#contact" }, ], }, { items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Documentation", href: "#" }, ], }, { items: [ { label: "Support", href: "mailto:support@sy-refund.test" }, { label: "Sales", href: "mailto:sales@sy-refund.test" }, { label: "Twitter", href: "https://twitter.com" }, ], }, ]; return (
); }