forked from sashaastiadi/www_mycelium_net
78 lines
3.2 KiB
TypeScript
78 lines
3.2 KiB
TypeScript
import Image from 'next/image';
|
|
import appleIcon from '@/images/apple.svg';
|
|
import windowsIcon from '@/images/windows.svg';
|
|
import androidIcon from '@/images/android.svg';
|
|
import linuxIcon from '@/images/linux.svg';
|
|
|
|
const features = [
|
|
{
|
|
name: 'Download for iOS & MacOS',
|
|
description: 'Download Mycelium App from the Apple Store.',
|
|
href: 'https://apps.apple.com/us/app/mycelium-network/id6504277565',
|
|
icon: appleIcon,
|
|
},
|
|
{
|
|
name: 'Download for Windows',
|
|
description: 'Download the Mycelium App for Windows directly from its Github repository.',
|
|
href: 'https://github.com/threefoldtech/myceliumflut/releases',
|
|
icon: windowsIcon,
|
|
},
|
|
{
|
|
name: 'Download for Android',
|
|
description: 'Download Mycelium from the Google Play Store.',
|
|
href: 'https://play.google.com/store/apps/details?id=tech.threefold.mycelium&pli=1',
|
|
icon: androidIcon,
|
|
},
|
|
{
|
|
name: 'Download for Linux',
|
|
description: 'Download the Mycelium binary for Linux directly from its Github repository.',
|
|
href: 'https://github.com/threefoldtech/mycelium/releases/tag/v0.6.1',
|
|
icon: linuxIcon,
|
|
},
|
|
];
|
|
|
|
export default function DownloadHero() {
|
|
return (
|
|
<div className="bg-white py-24 sm:py-32">
|
|
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
|
<div className="mx-auto max-w-2xl lg:mx-0">
|
|
<h2 className="text-4xl font-semibold tracking-tight text-pretty text-gray-900 sm:text-5xl">
|
|
Download Mycelium
|
|
</h2>
|
|
<p className="mt-6 text-lg/8 text-gray-600">
|
|
Get Mycelium for Android, Windows, macOS, and iOS to securely connect, store, and interact with the decentralized network—seamlessly and efficiently. Not sure how it works?{' '}
|
|
<a href="https://docs.ourworld.tf/mycelium_cloud/docs/" className="text-cyan-500 hover:text-cyan-500">
|
|
Read the manual.
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div className="mx-auto mt-16 max-w-2xl sm:mt-20 lg:mt-24 lg:max-w-none">
|
|
<dl className="grid max-w-xl grid-cols-1 gap-x-8 gap-y-16 lg:max-w-none md:grid-cols-2 lg:grid-cols-4">
|
|
{features.map((feature) => (
|
|
<div
|
|
key={feature.name}
|
|
className="flex flex-col rounded-lg border border-gray-200 p-8 shadow-sm transition-all duration-300 ease-in-out hover:bg-gray-50 hover:shadow-md hover:scale-105"
|
|
>
|
|
<dt className="text-base/7 font-semibold text-gray-900">
|
|
<div className="mb-6 flex h-10 w-10 items-center justify-center">
|
|
<Image src={feature.icon} alt="" className="h-10 w-10" />
|
|
</div>
|
|
{feature.name}
|
|
</dt>
|
|
<dd className="mt-1 flex flex-auto flex-col text-base/7 text-gray-600">
|
|
<p className="flex-auto">{feature.description}</p>
|
|
<p className="mt-6">
|
|
<a href={feature.href} className="text-sm/6 font-semibold text-cyan-500 hover:text-cyan-500">
|
|
Download Now <span aria-hidden="true">→</span>
|
|
</a>
|
|
</p>
|
|
</dd>
|
|
</div>
|
|
))}
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|