diff --git a/src/app/test/page.tsx b/src/app/test/page.tsx deleted file mode 100644 index 48e67fe..0000000 --- a/src/app/test/page.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import { - AlertDialog, - AlertDialogAction, - AlertDialogCancel, - AlertDialogContent, - AlertDialogDescription, - AlertDialogFooter, - AlertDialogHeader, - AlertDialogTitle, - AlertDialogTrigger, -} from "~/app/_components/ui/alert-dialog"; -import { Badge } from "~/app/_components/ui/badge"; -import { Button } from "~/app/_components/ui/button"; - -export default async function Test() { - return ( -
-

test

- - - - - Open - - - Are you absolutely sure? - - This action cannot be undone. This will permanently delete your - account and remove your data from our servers. - - - - Cancel - Continue - - - - - - - Badge - Badge - Badge - Badge - - - - - - - - - - - - - - -
- ); -} - -const Space = () =>
;