"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function HeaderButtons() { const pathname = usePathname(); return (
{pathname.includes("contact-us") ? "Home" : "Contact us"} Login
); }