"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Portfolio", id: "portfolio" }, { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" }, ]; const navButton = { text: "Call Now", href: "/contact" }; const footerColumns = [ { items: [ { label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/portfolio" }, { label: "Pricing", href: "/pricing" }, ], }, { items: [ { label: "Contact Us", href: "/contact" }, { label: "Free Quote", href: "/contact" }, { label: "FAQ", href: "/" }, { label: "Blog", href: "/" }, ], }, { items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Service Agreement", href: "/" }, { label: "Warranty Info", href: "/" }, ], }, { items: [ { label: "Phone: (555) 123-4567", href: "tel:+15551234567" }, { label: "Email: info@greenscape.com", href: "mailto:info@greenscape.com" }, { label: "Address: 123 Lawn St, City, State 12345", href: "/" }, { label: "Hours: Mon-Sat 8am-6pm", href: "/" }, ], }, ]; return (
); }