import { useEffect, useState } from "react" import { ArrowUpRight } from "lucide-react" import { Button } from "@/components/ui/button" import { Logo } from "@/components/ui/logo" export function Header() { const [scrolled, setScrolled] = useState(false) // 스크롤 시 헤더를 반투명 블러 배경으로 전환 useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 40) window.addEventListener("scroll", handleScroll, { passive: true }) handleScroll() return () => window.removeEventListener("scroll", handleScroll) }, []) return (
) } const NAV_LINKS = [ { href: "#how-it-works", label: "협상 데모" }, { href: "#how-it-works-demo", label: "이용 가이드" }, { href: "#comparison", label: "도입 전후 비교" }, { href: "#faq", label: "자주 묻는 질문" }, ]