File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { useEffect } from "react";
44
55function 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" >
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { useEffect } from "react";
44function New ( ) {
55 useEffect ( ( ) => {
66 window . location . href =
7- "https://silentclient.freshdesk.com/support/tickets/new " ;
7+ "https://dsc.gg/silentclient " ;
88 } , [ ] ) ;
99
1010 return (
You can’t perform that action at this time.
0 commit comments