import Link from "next/link"; import { BookOpen, Code2, Globe, Info } from "lucide-react"; const API_URL = process.env.NEXT_PUBLIC_API_URL ?? ""; const LINKS = [ { href: `${API_URL}/docs`, label: "API Reference", icon: BookOpen, external: true, title: undefined, }, { href: `${API_URL}/.well-known/nodeinfo`, label: "NodeInfo", icon: Info, external: true, title: undefined, }, { href: "/about/fediverse", label: "About the Fediverse", icon: Globe, external: false, title: undefined, }, { href: "https://git.gabrielkaszewski.dev/GKaszewski/thoughts", label: "Source Code", icon: Code2, external: true, title: undefined, }, ] as const; export function Footer() { return ( ); }