two-cloudwebsite/components/Cta.tsx
2025-07-16 17:42:25 +08:00

15 lines
456 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
export default function Cta() {
return (
<section className="px-6 py-section bg-accent text-white text-center">
<h2 className="text-2xl font-medium mb-4"></h2>
<a
href="/pricing"
className="inline-block px-8 py-3 bg-background text-accent rounded-lg font-medium hover:opacity-90 transition"
>
</a>
</section>
);
}