diff options
| author | Dhravya Shah <[email protected]> | 2024-07-21 11:26:05 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-21 11:26:05 -0500 |
| commit | 4078d2dd6bbe07bf310379edb49918f744afa1ad (patch) | |
| tree | b2bb6e53600e0779e93b968d607b170b0aba0053 | |
| parent | fix: oopsies, not default function (diff) | |
| download | supermemory-4078d2dd6bbe07bf310379edb49918f744afa1ad.tar.xz supermemory-4078d2dd6bbe07bf310379edb49918f744afa1ad.zip | |
producthunt link
| -rw-r--r-- | apps/web/app/(quicklinks)/ph/route.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/web/app/(quicklinks)/ph/route.ts b/apps/web/app/(quicklinks)/ph/route.ts new file mode 100644 index 00000000..7355c24c --- /dev/null +++ b/apps/web/app/(quicklinks)/ph/route.ts @@ -0,0 +1,5 @@ +import { redirect } from "next/navigation"; + +export async function GET() { + return redirect("https://www.producthunt.com/posts/supermemory"); +} |