import { Dialog, DialogClose, DialogContent, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; const TermsOfServiceDialog: React.FC<{ open: boolean; onOpenChange: (open: boolean) => void; }> = ({ open, onOpenChange }) => { 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;