This commit is contained in:
2025-09-04 18:40:15 +02:00
parent 375dc77441
commit 098eeef17d
23 changed files with 282 additions and 87 deletions

View File

@@ -1,4 +1,7 @@
import { AppStoreLink } from '@/components/AppStoreLink'
import { WindowsLink } from '@/components/WindowsLink'
import { AndroidLink } from './AndroidLink'
import { LinuxLink } from '@/components/LinuxLink'
import { CircleBackground } from '@/components/CircleBackground'
import { Container } from '@/components/Container'
@@ -12,17 +15,18 @@ export function CallToAction() {
<CircleBackground color="#fff" className="animate-spin-slower" />
</div>
<Container className="relative">
<div className="mx-auto max-w-md sm:text-center">
<div className="mx-auto max-w-2xl sm:text-center">
<h2 className="text-3xl font-medium tracking-tight text-white sm:text-4xl">
Get your first tips today
Get Started Today
</h2>
<p className="mt-4 text-lg text-gray-300">
It takes 30 seconds to sign up. Download the app and create an
account today and well send you a tip guaranteed to double your
first investment.
<p className="mt-6 text-lg text-gray-300">
Download the Mycelium app and step into the future of secure, peer-to-peer networking; fast, private, and decentralized.
</p>
<div className="mt-8 flex justify-center">
<div className="mt-8 flex justify-center gap-4">
<AppStoreLink color="white" />
<WindowsLink color="white" />
<AndroidLink color="white" />
<LinuxLink color="white" />
</div>
</div>
</Container>