blob: 6b017306013f670bf00a23dd5a820f746094930c (
plain) (
blame)
1
2
3
4
5
6
7
|
import { redirect } from "next/navigation";
export async function GET() {
return redirect(
"https://chromewebstore.google.com/detail/supermemory/afpgkkipfdpeaflnpoaffkcankadgjfc?authuser=0&hl=en-GB",
);
}
|