import Link from "next/link"; import { TOOL_PAGES } from "@/lib/tool-pages"; export default function RelatedTools({ current }: { current: string }) { const others = TOOL_PAGES.filter((t) => t.slug !== current); return (

Weitere Zufalls-Tools:{" "} {others.map((t, i) => ( {t.label} {i < others.length - 2 ? ", " : i === others.length - 2 ? " sowie " : "."} ))}

); }