Skip to content

Commit

Permalink
Merge pull request #12 from InfuseAI/feature/add-discord-redirect-page
Browse files Browse the repository at this point in the history
[Request] Add discord redirect page
  • Loading branch information
DaveFlynn authored Jul 5, 2023
2 parents e317d82 + 843a167 commit 5e37b63
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/pages/discord.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// pages/redirect

import {useEffect} from 'react'
export default function redirect() {
useEffect(() => {
window.location.assign('https://discord.gg/b3HAykQPkn')
})
return(
<>
</>
)
}

0 comments on commit 5e37b63

Please sign in to comment.