mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
19 lines
576 B
TypeScript
19 lines
576 B
TypeScript
|
import { Button } from "@/components/ui/button"
|
||
|
|
||
|
export default function CTA() {
|
||
|
return (
|
||
|
<section className="py-20 bg-primary text-white">
|
||
|
<div className="container mx-auto text-center">
|
||
|
<h2 className="text-3xl font-bold mb-6">Ready to Streamline Your Workflow?</h2>
|
||
|
<p className="text-xl mb-8 max-w-2xl mx-auto">
|
||
|
Join thousands of teams already using StreamLine to boost their productivity.
|
||
|
</p>
|
||
|
<Button size="lg" variant="secondary">
|
||
|
Start Your Free Trial
|
||
|
</Button>
|
||
|
</div>
|
||
|
</section>
|
||
|
)
|
||
|
}
|
||
|
|