1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
"use client";
import React from "react";
import Link from "next/link";
import { usePathname } from "next/navigation";
const navigation = [
{
name: "Share",
href: "/share",
},
{
name: "Unseal",
href: "/unseal",
},
// {
// name: "Deploy",
// href: "/deploy",
// },
{
name: "GitHub",
href: "https://github.com/retrofor/ChienDice",
external: true,
},
] satisfies { name: string; href: string; external?: boolean }[];
export const Header: React.FC = () => {
const pathname = usePathname();
return (
<header className="top-0 z-30 w-full px-4 sm:fixed backdrop-blur bh-zinc-900/50">
<div className="container mx-auto">
<div className="flex flex-col items-center justify-between gap-2 pt-6 sm:h-20 sm:flex-row sm:pt-0">
<Link href="/" className="text-2xl font-semibold duration-150 text-zinc-100 hover:text-white">
EnvShare
</Link>
{/* Desktop navigation */}
<nav className="flex items-center grow">
<ul className="flex flex-wrap items-center justify-end gap-4 grow">
{navigation.map((item) => (
<li className="" key={item.href}>
<Link
className={`flex items-center px-3 py-2 duration-150 text-sm sm:text-base hover:text-zinc-50
${pathname === item.href ? "text-zinc-200" : "text-zinc-400"}`}
href={item.href}
target={item.external ? "_blank" : undefined}
rel={item.external ? "noopener noreferrer" : undefined}
>
{item.name}
</Link>
</li>
))}
</ul>
</nav>
</div>
</div>
{/* Fancy fading bottom border */}
</header>
);
};
|