"use client"; import { usePathname } from "next/navigation"; import { singleTools } from "@/config/tools"; import { ToolLink } from "./tool-link"; export function Settings() { const pathname = usePathname(); return ( ); }