removed test page

This commit is contained in:
2024-11-29 11:07:07 -06:00
parent c1bebd22f4
commit 5416b5f025

View File

@@ -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 (
<main className="container py-8">
<h1 className="text-2xl font-bold underline underline-offset-4">test</h1>
<Space />
<AlertDialog>
<AlertDialogTrigger>Open</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Are you absolutely sure?</AlertDialogTitle>
<AlertDialogDescription>
This action cannot be undone. This will permanently delete your
account and remove your data from our servers.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Cancel</AlertDialogCancel>
<AlertDialogAction>Continue</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
<Space />
<Badge variant="default">Badge</Badge>
<Badge variant="destructive">Badge</Badge>
<Badge variant="outline">Badge</Badge>
<Badge variant="secondary">Badge</Badge>
<Space />
<Button variant="default">Button</Button>
<Button variant="destructive">Button</Button>
<Button variant="outline">Button</Button>
<Button variant="secondary">Button</Button>
<Button variant="ghost">Button</Button>
<Button variant="link">Button</Button>
<Space />
<Space />
<Space />
</main>
);
}
const Space = () => <div className="h-4" />;