"use client"; import { Fragment } from "react"; import Link from "next/link"; import { Popover, Transition } from "@headlessui/react"; import { Container } from "./Container"; import { Logo } from "./shared/Logo"; import { NavLink } from "./NavLink"; import { Button } from "./ui/button"; import { cn } from "@/lib/utils"; import { trackGAEvent } from "./analitycs"; function MobileNavLink({ href, children, target, }: { href: string; children: React.ReactNode; target?: string; }) { return ( { trackGAEvent({ action: "Nav Link Clicked", category: "Navigation", label: href, }); }} as={Link} href={href} target={target} className="block w-full p-2" > {children} ); } function MobileNavIcon({ open }: { open: boolean }) { return ( ); } function MobileNavigation() { return ( {({ open }) => } Features Testimonials Faqs Docs ); } export function Header() { return ( Features {/* Testimonials */} Faqs Docs Discord ); }