"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; export default function ConnectPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Explore My Works", id: "/explore" }, { name: "Vision", id: "/about" }, { name: "Connect", id: "/connect" }, { name: "Thoughts", id: "/thoughts" }, ]; const footerColumns = [ { title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Explore My Works", href: "/explore" }, { label: "Vision", href: "/about" }, { label: "Contact", href: "/contact" }, ], }, { title: "Connect", items: [ { label: "Calendly", href: "https://calendly.com/karu-navolab/growth-engine-demo-navo-lab" }, { label: "Substack", href: "https://substack.com/@karuthompson" }, { label: "X", href: "https://x.com/KaruThompson" }, { label: "Email", href: "mailto:hello@example.com" }, ], }, { title: "Resources", items: [ { label: "Newsletter", href: "#" }, { label: "Thoughts", href: "/thoughts" }, { label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, ], }, ]; return (
); }