mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
7 lines
210 B
TypeScript
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",
|
|
);
|
|
}
|