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

@@ -0,0 +1,15 @@
import { faDiscord } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import Link from 'next/link'
export function DiscordButton () {
return (
<>
<div className='relative'>
<Link href='/' className='home-button absolute -top-4 -right-4'>
<FontAwesomeIcon icon={faDiscord} />
</Link>
</div>
</>
)
}