initial commit
This commit is contained in:
22
src/components/landing/cta.tsx
Normal file
22
src/components/landing/cta.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user