"use client"; import { useState, useEffect } from "react"; import { Menu, X, Zap } from "lucide-react"; import { Button } from "@/components/ui/button"; const navLinks = [ { href: "#how-it-works", label: "How It Works" }, { href: "#services", label: "Services" }, { href: "#impact", label: "Impact" }, { href: "#packages", label: "Packages" }, { href: "#faq", label: "FAQ" }, { href: "#contact", label: "Contact" }, ]; export function Navigation() { const [isOpen, setIsOpen] = useState(false); const [isScrolled, setIsScrolled] = useState(false); useEffect(() => { const handleScroll = () => setIsScrolled(window.scrollY > 50); window.addEventListener("scroll", handleScroll); return () => window.removeEventListener("scroll", handleScroll); }, []); return ( ); }