ok
This commit is contained in:
15
src/components/DownloadLink.tsx
Normal file
15
src/components/DownloadLink.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import Link from 'next/link'
|
||||
import { ArrowDownTrayIcon } from '@heroicons/react/24/solid'
|
||||
|
||||
export function DownloadLink() {
|
||||
return (
|
||||
<Link
|
||||
href="#"
|
||||
aria-label="Download Mycelium"
|
||||
className="inline-flex items-center rounded-lg bg-gray-800 px-4 py-2 text-sm font-semibold text-white hover:bg-gray-900 transition-colors"
|
||||
>
|
||||
<ArrowDownTrayIcon className="h-5 w-5 mr-2" />
|
||||
Get Mycelium
|
||||
</Link>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user