"use client"; import { cn } from "@/lib/utils"; import { Logo } from "@/components/logo"; import { useScroll } from "@/hooks/use-scroll"; import { Button } from "@/components/ui/button"; import { MobileNav } from "@/components/mobile-nav"; export const navLinks = [ { label: "Features", href: "#", }, { label: "Pricing", href: "#", }, { label: "About", href: "#", }, ]; export function Header() { const scrolled = useScroll(10); return (
); }