import Link from 'next/link' import { usePathname } from 'next/navigation' import { Icons } from 'components' export default function BoxLink(props) { //? Props const { children, path, name } = props //? Assets const asPath = usePathname() //? Render(s) return (
{children} {name}
) }