Add component for Home button

This commit is contained in:
2025-11-06 22:04:38 -07:00
parent 4637f73c85
commit b638f30a18
7 changed files with 25 additions and 30 deletions

View File

@@ -0,0 +1,13 @@
import Link from 'next/link'
export function HomeButton () {
return (
<>
<div className='relative'>
<Link href='/' className='home-button absolute -top-4 -left-4'>
<span className='material-symbols-outlined'>home</span>
</Link>
</div>
</>
)
}