This commit is contained in:
2025-09-04 13:29:45 +02:00
commit be3cd61ba8
51 changed files with 9109 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import { AppStoreLink } from '@/components/AppStoreLink'
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-md sm:text-center">
<h2 className="text-3xl font-medium tracking-tight text-white sm:text-4xl">
Get your first tips 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>
<div className="mt-8 flex justify-center">
<AppStoreLink color="white" />
</div>
</div>
</Container>
</section>
)
}