Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
"use client";
import { usePathname } from "next/navigation";
import Nav from "../../components/Nav";
const SlugPage = () => {
const pathname = usePathname();
return (
<>
<Nav />
<p>Hello, I'm the {pathname} page</p>
</>
);
};
export default SlugPage;