Finish revert and apply stashed changes

This commit is contained in:
2025-09-14 17:21:38 +02:00
parent 7efede267d
commit 6343a22a8c
32 changed files with 135 additions and 2168 deletions

View File

@@ -1,35 +0,0 @@
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'
export function CallToAction() {
return (
<section
id="get-free-shares-today"
className="relative overflow-hidden bg-gray-900 py-20 sm:py-28"
>
<div className="absolute top-1/2 left-20 -translate-y-1/2 sm:left-1/2 sm:-translate-x-1/2">
<CircleBackground color="#fff" className="animate-spin-slower" />
</div>
<Container className="relative">
<div className="mx-auto max-w-2xl sm:text-center">
<h2 className="text-3xl font-medium tracking-tight text-white sm:text-4xl">
Get Started Today
</h2>
<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 gap-4">
<AppStoreLink color="white" />
<WindowsLink color="white" />
<AndroidLink color="white" />
<LinuxLink color="white" />
</div>
</div>
</Container>
</section>
)
}