117 lines
4.1 KiB
TypeScript
117 lines
4.1 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { useState, useEffect } from "react";
|
|
import { Menu, X } from "lucide-react";
|
|
import { motion, AnimatePresence } from "framer-motion";
|
|
import { NAV_LINKS } from "~/lib/data";
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
export function SiteHeader() {
|
|
const [mobileOpen, setMobileOpen] = useState(false);
|
|
const [scrolled, setScrolled] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const onScroll = () => setScrolled(window.scrollY > 20);
|
|
window.addEventListener("scroll", onScroll, { passive: true });
|
|
return () => window.removeEventListener("scroll", onScroll);
|
|
}, []);
|
|
|
|
return (
|
|
<header
|
|
className={`sticky top-0 z-50 w-full border-b transition-colors duration-300 ${
|
|
scrolled
|
|
? "border-neutral-200 bg-white/95 shadow-sm backdrop-blur-md"
|
|
: "border-neutral-200/80 bg-white/80 backdrop-blur-md"
|
|
}`}
|
|
>
|
|
<div className="container mx-auto flex h-16 items-center justify-between px-4 md:px-6">
|
|
<Link href="/" className="flex items-center gap-2">
|
|
<span className="text-xl font-semibold tracking-tight text-neutral-900">
|
|
Nomadro
|
|
</span>
|
|
<span className="hidden text-xs text-neutral-500 md:inline">
|
|
Digital Nomad OS / 数字游民操作系统
|
|
</span>
|
|
</Link>
|
|
|
|
<nav className="hidden items-center gap-8 md:flex">
|
|
{NAV_LINKS.map((link) => (
|
|
<Link
|
|
key={link.href}
|
|
href={link.href}
|
|
target={link.external ? "_blank" : undefined}
|
|
rel={link.external ? "noopener noreferrer" : undefined}
|
|
className="text-sm font-medium text-neutral-600 transition-colors hover:text-neutral-900"
|
|
>
|
|
{link.label}
|
|
</Link>
|
|
))}
|
|
<Link
|
|
href="https://meetup.hackrobot.cn"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<Button size="sm">开始行动</Button>
|
|
</Link>
|
|
</nav>
|
|
|
|
<button
|
|
type="button"
|
|
className="flex h-10 w-10 items-center justify-center rounded-lg md:hidden"
|
|
onClick={() => setMobileOpen(true)}
|
|
aria-label="打开菜单"
|
|
>
|
|
<Menu className="h-5 w-5 text-neutral-700" />
|
|
</button>
|
|
</div>
|
|
|
|
<AnimatePresence>
|
|
{mobileOpen && (
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
exit={{ opacity: 0 }}
|
|
className="fixed inset-0 z-50 bg-white md:hidden"
|
|
>
|
|
<div className="flex h-16 items-center justify-between border-b px-4">
|
|
<span className="text-lg font-semibold">Nomadro</span>
|
|
<button
|
|
type="button"
|
|
className="flex h-10 w-10 items-center justify-center"
|
|
onClick={() => setMobileOpen(false)}
|
|
aria-label="关闭菜单"
|
|
>
|
|
<X className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
<nav className="flex flex-col gap-1 p-4">
|
|
{NAV_LINKS.map((link) => (
|
|
<Link
|
|
key={link.href}
|
|
href={link.href}
|
|
target={link.external ? "_blank" : undefined}
|
|
rel={link.external ? "noopener noreferrer" : undefined}
|
|
className="rounded-lg px-4 py-3 text-base font-medium text-neutral-700 hover:bg-neutral-50"
|
|
onClick={() => setMobileOpen(false)}
|
|
>
|
|
{link.label}
|
|
</Link>
|
|
))}
|
|
<Link
|
|
href="https://meetup.hackrobot.cn"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-4 rounded-lg bg-neutral-900 px-4 py-3 text-center text-base font-medium text-white"
|
|
onClick={() => setMobileOpen(false)}
|
|
>
|
|
开始行动
|
|
</Link>
|
|
</nav>
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
</header>
|
|
);
|
|
}
|