diff --git a/app/components/new-landing/Footer.tsx b/app/components/new-landing/Footer.tsx index cd2f6fd..d97cb44 100644 --- a/app/components/new-landing/Footer.tsx +++ b/app/components/new-landing/Footer.tsx @@ -62,7 +62,7 @@ const FooterLinks = [ { title: "About", url: "/about", - external: false, + external: true, }, { title: "Brand Assets", diff --git a/app/routes/about.tsx b/app/routes/about.tsx new file mode 100644 index 0000000..7367dfc --- /dev/null +++ b/app/routes/about.tsx @@ -0,0 +1,3 @@ +import { redirect } from "@remix-run/node"; + +export const loader = async () => redirect("https://docs.treasure.lol", 302);