1
0
Fork 0

refactor: move to monorepo

This commit is contained in:
Vojtěch Mareš 2023-10-04 18:13:04 +02:00
parent f81e3e1dd6
commit d891426a12
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
88 changed files with 403 additions and 160 deletions

View file

@ -1,30 +0,0 @@
import { Button } from "@/components/Button";
import { Container } from "@/components/Container";
export function CallToAction() {
return (
<section
id="get-started-today"
className="relative overflow-hidden bg-amber-500 py-32"
>
<Container className="relative">
<div className="mx-auto max-w-xl text-center">
<h2 className="font-display text-3xl tracking-tight text-white sm:text-4xl">
Pojďme do toho společně
</h2>
<p className="mt-4 text-lg tracking-tight text-white">
Je na čase pozvednout Vaši infrastrukturu na dnešní standardy. Infrastruktura ukázat Vaši aplikaci světu, ne ji držet při zemi.
</p>
<Button
href="mailto:iam@vojtechmares.com"
color="white"
size="large"
className="mt-10"
>
Napište mi
</Button>
</div>
</Container>
</section>
);
}