supermemory/apps/web/app/(quicklinks)/extension/route.ts
2024-07-16 19:26:47 -05:00

7 lines
210 B
TypeScript

import { redirect } from "next/navigation";
export async function GET() {
return redirect(
"https://chromewebstore.google.com/detail/supermemory/afpgkkipfdpeaflnpoaffkcankadgjfc?authuser=0&hl=en-GB",
);
}