diff --git a/website/agb/src/app/tapir/dpl/page.tsx b/website/agb/src/app/tapir/dpl/page.tsx new file mode 100644 index 00000000..eb136415 --- /dev/null +++ b/website/agb/src/app/tapir/dpl/page.tsx @@ -0,0 +1,29 @@ +import { ContentBlock } from "@/components/contentBlock"; +import { Metadata } from "next"; +import { redirect } from "next/navigation"; + +export const metadata: Metadata = { + title: "Dungeon Puzzler Redirect", +}; + +const REDIRECT_TO = "/showcase/the-dungeon-puzzler's-lament"; + +export default function DplRedirectPage() { + redirect(REDIRECT_TO); + + return ( + <> + +

This page is a redirect to the Dungeon Puzzler

+
+ +

+ You should be redirected automatically.{" "} + + If you were not redirected automatically click here. + +

+
+ + ); +}