diff --git a/src/pages/network/NetworkDownload.tsx b/src/pages/network/NetworkDownload.tsx
new file mode 100644
index 0000000..ff72871
--- /dev/null
+++ b/src/pages/network/NetworkDownload.tsx
@@ -0,0 +1,114 @@
+'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'
+
+import { H3, P, Eyebrow, CT, CP } from '@/components/Texts'
+
+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 NetworkDownload() {
+ return (
+
+
+ {/* ✅ Top horizontal line with spacing */}
+
+
+
+
+
+
+ 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.
+
+
+