Skip to content

Commit

Permalink
Fix broken 'About' link. Change it to a 302 redirect to docs.treasure…
Browse files Browse the repository at this point in the history
….lol. (#302)
  • Loading branch information
Antlion12 authored Jan 8, 2025
1 parent d48759e commit ecdafc0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/new-landing/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const FooterLinks = [
{
title: "About",
url: "/about",
external: false,
external: true,
},
{
title: "Brand Assets",
Expand Down
3 changes: 3 additions & 0 deletions app/routes/about.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { redirect } from "@remix-run/node";

export const loader = async () => redirect("https://docs.treasure.lol", 302);

0 comments on commit ecdafc0

Please sign in to comment.