improvements

This commit is contained in:
Emre
2025-10-24 02:17:33 +03:00
parent 644bb34419
commit 3a7aa82ff7
34 changed files with 740 additions and 442 deletions

View File

@@ -48,12 +48,12 @@ export function CloudOverview() {
{focusAreas.map((item) => (
<div
key={item.title}
className="rounded-3xl border border-white/10 bg-white/5 p-8 text-left shadow-[0_20px_60px_-40px_rgba(6,182,212,0.6)] backdrop-blur"
className="rounded-3xl p-8 text-left transition hover:-translate-y-1"
>
<div className="text-base font-semibold text-cyan-200">
<div className="text-lg font-semibold text-white">
{item.title}
</div>
<p className="mt-4 text-sm leading-relaxed text-gray-200">
<p className="mt-4 text-sm leading-relaxed text-gray-300">
{item.description}
</p>
</div>