'use client' import { motion } from 'framer-motion' 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, alt: 'Apple logo', }, { 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, alt: 'Windows logo', }, { 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, alt: 'Android logo', }, { name: 'Download for Linux', description: 'Download the Mycelium binary for Linux directly from its Github repository.', href: 'https://github.com/threefoldtech/mycelium/releases', icon: linuxIcon, alt: 'Linux logo', }, ] export function DownloadHero() { return (
Download Mycelium Network Get Mycelium Network for Android, Windows, macOS, and iOS to securely connect, store, and interact with the decentralized network—seamlessly and efficiently. Not sure how it works?{' '} Read the manual.
{features.map((feature) => (
{feature.alt}
{feature.name}

{feature.description}

Download Now

))}
) }