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: "#core-values", label: "솔루션 이점" }, { href: "#reinforcement", label: "강화학습" }, { href: "#benchmarks", label: "보안 및 신뢰성" }, ]