"use client" import { Dialog, DialogContent, DialogHeader, DialogTitle, } from "@/components/ui/dialog" export default function AboutModal({ open, setOpen, }: { open: boolean setOpen: (open: boolean) => void }) { return ( About this project
Sandbox is an open-source cloud-based code editing environment with custom AI code autocompletion and real-time collaboration.
) }