import { Dialog, DialogContent } from "@/components/ui/dialog"; import { Github } from "lucide-react"; interface CreditsDialogProps { open: boolean; onOpenChange: (open: boolean) => void; } export const CreditsDialog = ({ open, onOpenChange }: CreditsDialogProps) => { return (

Credits

Made by M1X. We are{" "} Sandro,{" "} Alessandro,{" "} Mattia,{" "} Michael,{" "} Emiliano,{" "} and Felix.

View source on GitHub
); };