"use client"; import React from "react"; import { usePathname } from "next/navigation"; type Props = { domain: string; }; export function AddressBar({ domain }: Props) { const pathname = usePathname(); return (