15 lines
456 B
TypeScript
15 lines
456 B
TypeScript
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>
|
||
);
|
||
} |