"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 (
EnvShare {/* Desktop navigation */}
{/* Fancy fading bottom border */}
); };