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

25 lines
1.3 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.

import { Globe, Repeat, BarChart } from 'lucide-react';
export default function Features() {
return (
<section id="features" className="px-6">
<div className="max-w-screen-lg mx-auto grid grid-cols-1 md:grid-cols-3 gap-12">
<div className="flex flex-col items-center text-center p-6 hover:shadow-lg transition">
<Globe className="h-12 w-12 text-accent mb-4" />
<h3 className="text-xl font-medium mb-2"></h3>
<p className="leading-relaxed text-sm"></p>
</div>
<div className="flex flex-col items-center text-center p-6 hover:shadow-lg transition">
<Repeat className="h-12 w-12 text-accent mb-4" />
<h3 className="text-xl font-medium mb-2"></h3>
<p className="leading-relaxed text-sm"></p>
</div>
<div className="flex flex-col items-center text-center p-6 hover:shadow-lg transition">
<BarChart className="h-12 w-12 text-accent mb-4" />
<h3 className="text-xl font-medium mb-2"></h3>
<p className="leading-relaxed text-sm"></p>
</div>
</div>
</section>
);
}