"use client"; import { useUser } from "@/hooks/useUser"; import { Button } from "@/components/ui/button"; export const NotLogged = () => { const { openLoginWindow } = useUser(); return (

Oops! You must be logged to continue.

Unfortunately you cannot access DeepSite without being logged through your Hugging Face account.

); };