"use client"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { ExternalLink, AlertTriangle } from "lucide-react"; interface IframeWarningModalProps { isOpen: boolean; onOpenChange: (open: boolean) => void; } export default function IframeWarningModal({ isOpen, }: // onOpenChange, IframeWarningModalProps) { const handleVisitSite = () => { window.open("https://deepsite.hf.co", "_blank"); }; return ( {}}>
Unauthorized Embedding
You're viewing DeepSite through an unauthorized iframe. For the best experience and security, please visit the official website directly.

Why visit the official site?

  • • Better performance and security
  • • Full functionality access
  • • Latest features and updates
  • • Proper authentication support
); }