From 839ee3b6f7a19d58f5cd354957c746bcb32a2a51 Mon Sep 17 00:00:00 2001 From: Corwin Date: Sun, 12 May 2024 15:27:48 +0100 Subject: [PATCH] setup redirect --- website/agb/src/app/tapir/dpl/page.tsx | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 website/agb/src/app/tapir/dpl/page.tsx 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. + +

+
+ + ); +}