23 lines
697 B
TypeScript
23 lines
697 B
TypeScript
import { Button } from "@/components/ui/button";
|
|
|
|
export function CTA() {
|
|
return (
|
|
<section className="px-6 py-24">
|
|
<div className="mx-auto max-w-2xl text-center">
|
|
<h2 className="mb-4 text-3xl font-bold text-neutral-50 md:text-4xl">
|
|
Gotowy na start?
|
|
</h2>
|
|
<p className="mb-8 text-text-secondary">
|
|
Zacznij orkiestrować agentów AI już dziś.
|
|
</p>
|
|
<div className="flex flex-col items-center gap-4 sm:flex-row sm:justify-center">
|
|
<Button size="lg">Rozpocznij</Button>
|
|
<Button variant="ghost" size="lg">
|
|
Zobacz dokumentację
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|