"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import React from "react"; export const SettingsNavButton: React.FC<{ href: string; children: React.ReactNode; comingSoon?: boolean; }> = ({ href, children, comingSoon }) => { const pathname = usePathname(); const isActive = pathname === href; if (comingSoon) { return (