Add proper button for splash page

This commit is contained in:
2026-01-31 01:12:06 -07:00
parent bf409afea4
commit 4e694c108c
2 changed files with 18 additions and 10 deletions

View File

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