import { Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { useState } from "react"; function TermsOfServiceDialog() { const [isOpen, setIsOpen] = useState(true); return ( Terms of Service
By using this website, you agree to the{" "} terms of service . This project is MIT licensed.{" "} You can run this app locally by downloading the source code from Github.
Agree
); } export default TermsOfServiceDialog;