feat: global shell — header, footer, sidebars, and layout integration
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
import { Gamepad2 } from "lucide-react"
|
||||
import Link from "next/link"
|
||||
|
||||
export function Footer() {
|
||||
return (
|
||||
<footer className="border-t bg-muted/30">
|
||||
<div className="container mx-auto px-4 py-8">
|
||||
<div className="grid gap-8 md:grid-cols-4">
|
||||
<div>
|
||||
<Link href="/" className="flex items-center gap-2 font-bold text-lg">
|
||||
<Gamepad2 className="h-5 w-5" />
|
||||
聚玩
|
||||
</Link>
|
||||
<p className="mt-2 text-sm text-muted-foreground">专业游戏陪玩服务平台</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-sm mb-3">服务</h3>
|
||||
<nav className="flex flex-col gap-2 text-sm text-muted-foreground">
|
||||
<Link href="/search" className="hover:text-foreground transition-colors">
|
||||
找打手
|
||||
</Link>
|
||||
<Link href="/search" className="hover:text-foreground transition-colors">
|
||||
找店铺
|
||||
</Link>
|
||||
<Link href="/community" className="hover:text-foreground transition-colors">
|
||||
社区
|
||||
</Link>
|
||||
</nav>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-sm mb-3">支持</h3>
|
||||
<nav className="flex flex-col gap-2 text-sm text-muted-foreground">
|
||||
<span>帮助中心</span>
|
||||
<span>用户协议</span>
|
||||
<span>隐私政策</span>
|
||||
</nav>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-sm mb-3">联系我们</h3>
|
||||
<nav className="flex flex-col gap-2 text-sm text-muted-foreground">
|
||||
<span>客服邮箱: support@juwan.gg</span>
|
||||
<span>工作时间: 9:00 - 22:00</span>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-8 border-t pt-4 text-center text-xs text-muted-foreground">
|
||||
© 2025 聚玩 - 游戏陪玩服务平台
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user