Add discord button to pages

This commit is contained in:
2026-01-22 17:02:17 -07:00
parent 92800f0b96
commit 5918d206d9
14 changed files with 61 additions and 0 deletions

View File

@@ -3,6 +3,8 @@
import { Turnstile } from '@marsidev/react-turnstile'
import axios from 'axios'
import { useState } from 'react'
import { DiscordButton } from '../components/DiscordButton'
import { HomeButton } from '../components/HomeButton'
export default function CaptchaCodePage () {
const [token, setToken] = useState<string | null>(null)
@@ -13,6 +15,8 @@ export default function CaptchaCodePage () {
return (
<div className='box'>
<HomeButton />
<DiscordButton />
<p className='mb-4 -mt-2 text-center'>
Verify you are human to get a code
</p>