landing-site/src/components/CallToAction.jsx
Lux Aliaga 1738ce5939
CallToAction: Add seafoam.space
This commit adds Coral Castle to the instance list.
2022-11-29 21:01:00 -03:00

45 lines
1.6 KiB
JavaScript

import { AppStoreLink } from '@/components/AppStoreLink'
import { CircleBackground } from '@/components/CircleBackground'
import { Container } from '@/components/Container'
import Link from 'next/link'
export function CallToAction() {
return (
<section
id="join"
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">
Join an Akkoma instance today!
</h2>
<p className="mt-4 text-lg text-gray-300">
It&apos;s really easy to sign up and start posting!
Try one of the following instances if you don&apos;t have one of your own.
</p>
<div className="mt-8 flex justify-center">
<ul className={"text-white list-disc"}>
<li>
<Link href={"https://outerheaven.club"}>Outer Heaven [EN]</Link>
</li>
<li>
<Link href={"https://ak.lightnovel-dungeon.de"}>Light Novel Dungeon [DE]</Link>
</li>
<li>
<Link href={"https://snowdin.town"}>Snowdin Town [EN]</Link>
</li>
<li>
<Link href={"https://seafoam.space"}>Coral Castle [EN]</Link>
</li>
</ul>
</div>
</div>
</Container>
</section>
)
}