"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterCard from '@/components/sections/footer/FooterCard'; import { Flower2, Instagram, Facebook, Mail } from "lucide-react"; import Link from "next/link"; export default function ContactPage() { // Navigation logic for contact page const navItems = [ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "contact" } // scroll to contact section on current page ]; return (
); }