Refine desktop glass effects

This commit is contained in:
2026-05-16 14:12:42 +01:00
parent 4d3d9fd8d6
commit 53e72cb46a
4 changed files with 10 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ export default function TrustSection({ t }: { t: Messages }) {
<motion.div className="mt-12 grid gap-4 md:grid-cols-3" initial={false} whileInView="show" viewport={{ once: true, amount: 0.08 }} variants={{ show: { transition: { staggerChildren: 0.12 } } }}>
{t.trust.stats.map((stat) => (
<motion.div key={stat.value} variants={{ show: { opacity: 1, y: 0, scale: 1 } }} transition={{ duration: 0.65, ease: [0.22, 1, 0.36, 1] }} whileHover={{ y: -6 }} className="rounded-[2rem] border border-white/10 bg-white/[0.06] p-6 text-center backdrop-blur">
<p className="mb-4 text-xs font-semibold uppercase tracking-[0.22em] text-optical/90">{stat.label}</p>
<p className="mb-4 text-xs font-semibold uppercase tracking-[0.22em] text-white/64">{stat.label}</p>
<p className="text-5xl font-semibold tracking-[-0.06em] text-white">{stat.value}</p>
</motion.div>
))}