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

29 lines
1.5 KiB
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.

export default function About() {
return (
<section className="px-6 py-section bg-background">
<div className="max-w-screen-md mx-auto space-y-section">
<h2 className="text-3xl font-semibold text-center"></h2>
<p className="text-base leading-relaxed">
CloudProxy AWS线
</p>
<p className="text-base leading-relaxed">
访
</p>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div>
<h3 className="text-2xl font-medium">使</h3>
<p className="mt-2 text-sm text-gray-600"></p>
</div>
<div>
<h3 className="text-2xl font-medium"></h3>
<p className="mt-2 text-sm text-gray-600"></p>
</div>
<div>
<h3 className="text-2xl font-medium"></h3>
<p className="mt-2 text-sm text-gray-600"></p>
</div>
</div>
</div>
</section>
);
}