"use client" import { Dialog, DialogContent, DialogHeader, DialogTitle, } from "@/components/ui/dialog" export default function AboutModal({ open, setOpen, }: { open: boolean setOpen: (open: boolean) => void }) { return ( Help & Support
{/*
Sandbox is an open-source cloud-based code editing environment with custom AI code autocompletion and real-time collaboration.
*/}
Get help and support through our Discord community or by creating issues on GitHub:
Join our Discord community →
Report issues on GitHub →
) }