Files
sui_blog/src/components/Header.tsx
T
胡旭 dce8fe62ea feat: 重构博客为水墨纸质风格 + 搭建后台管理系统
- 重新设计全站 UI:parchment/ink/terracotta 水墨纸质色系,宋式 serif 排版
- 新增页面:文章列表、文章详情、分类、标签、关于
- GSAP ScrollTrigger 滚动动画 + 逐字揭示效果
- 后台管理系统 /admin:文章/分类/标签 CRUD,JSON 文件存储
- 登录认证(cookie session)
- 设计系统文档 UI.md
2026-06-24 08:47:14 +08:00

107 lines
3.7 KiB
TypeScript

"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { useState } from "react";
const navItems = [
{ label: "首页", href: "/" },
{ label: "文章", href: "/blog" },
{ label: "分类", href: "/categories" },
{ label: "标签", href: "/tags" },
{ label: "关于", href: "/about" },
];
export default function Header() {
const pathname = usePathname();
const [menuOpen, setMenuOpen] = useState(false);
return (
<header className="sticky top-0 z-50 backdrop-blur-md bg-parchment/80 border-b border-warm-gray/20">
<div className="mx-auto px-page max-w-5xl">
<nav className="flex items-center justify-between h-16">
{/* Logo */}
<Link href="/" className="group flex items-center gap-2">
<span className="font-display text-2xl font-semibold tracking-wide text-ink group-hover:text-terracotta transition-colors duration-300">
</span>
<span className="hidden sm:inline font-sans text-xs text-ink-muted tracking-widest uppercase">
asui.xyz
</span>
</Link>
{/* Desktop Nav */}
<div className="hidden md:flex items-center gap-1">
{navItems.map((item) => {
const isActive =
pathname === item.href ||
(item.href !== "/" && pathname.startsWith(item.href));
return (
<Link
key={item.href}
href={item.href}
className={`
relative px-4 py-2 font-sans text-sm tracking-wide transition-colors duration-300
${isActive ? "text-terracotta" : "text-ink-muted hover:text-ink"}
`}
>
{item.label}
{isActive && (
<span className="absolute bottom-0 left-1/2 -translate-x-1/2 w-1 h-1 rounded-full bg-terracotta" />
)}
</Link>
);
})}
</div>
{/* Mobile menu button */}
<button
onClick={() => setMenuOpen(!menuOpen)}
className="md:hidden p-2 text-ink-muted hover:text-ink transition-colors"
aria-label="Toggle menu"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" stroke="currentColor" strokeWidth="1.5">
{menuOpen ? (
<>
<line x1="4" y1="4" x2="16" y2="16" />
<line x1="16" y1="4" x2="4" y2="16" />
</>
) : (
<>
<line x1="3" y1="6" x2="17" y2="6" />
<line x1="3" y1="10" x2="17" y2="10" />
<line x1="3" y1="14" x2="17" y2="14" />
</>
)}
</svg>
</button>
</nav>
{/* Mobile menu */}
{menuOpen && (
<div className="md:hidden pb-4 animate-fade-in">
{navItems.map((item) => {
const isActive =
pathname === item.href ||
(item.href !== "/" && pathname.startsWith(item.href));
return (
<Link
key={item.href}
href={item.href}
onClick={() => setMenuOpen(false)}
className={`
block py-3 px-2 font-sans text-sm tracking-wide border-b border-warm-gray/10 transition-colors duration-300
${isActive ? "text-terracotta" : "text-ink-muted"}
`}
>
{item.label}
</Link>
);
})}
</div>
)}
</div>
</header>
);
}