Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
"use client";
import styles from "./PreviewNotice.module.css";
import { usePathname } from "next/navigation";
export const PreviewNotice = () => {
const pathname = usePathname();
return (
<aside className={styles.preview}>
Preview mode enabled
<a
className={styles.link}
href={`/api/exit-preview?path=${encodeURIComponent(pathname)}`}
>
Exit
</a>
</aside>
);
};