We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a60252 commit def0f4eCopy full SHA for def0f4e
src/frontend/src/routes/faq/+page.ts
@@ -0,0 +1,9 @@
1
+import { redirect } from "@sveltejs/kit";
2
+import type { PageLoad } from "./$types";
3
+
4
+let firstVisit = true;
5
6
+export const load: PageLoad = () => {
7
+ // Redirect FAQ to external support site using SvelteKit's redirect
8
+ throw redirect(307, "https://identitysupport.dfinity.org/hc/en-us");
9
+};
0 commit comments