Skip to content

Commit d0645f1

Browse files
committed
support update link
1 parent 46994cf commit d0645f1

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

pages/404.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { useEffect } from "react";
44

55
function NotFound() {
66
useEffect(() => {
7-
window.location.href = "https://silentclient.freshdesk.com/";
7+
window.location.href =
8+
"https://dsc.gg/silentclient";
89
}, []);
910
return (
1011
<Center h="full" w="full">

pages/index.tsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Head from "next/head";
2+
import { useEffect } from "react";
3+
4+
function Index() {
5+
useEffect(() => {
6+
window.location.href =
7+
"https://dsc.gg/silentclient";
8+
}, []);
9+
10+
return (
11+
<>
12+
<Head>
13+
<title>Silent Client Support</title>
14+
</Head>
15+
</>
16+
);
17+
}
18+
19+
export default Index;

pages/new.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useEffect } from "react";
44
function New() {
55
useEffect(() => {
66
window.location.href =
7-
"https://silentclient.freshdesk.com/support/tickets/new";
7+
"https://dsc.gg/silentclient";
88
}, []);
99

1010
return (

0 commit comments

Comments
 (0)