animations

This commit is contained in:
2026-01-17 13:17:10 +01:00
parent 021d23ab93
commit 29168a9778
19 changed files with 1353 additions and 252 deletions

View File

@@ -99,18 +99,15 @@ export default function TeamPage() {
</p>
</div>
</div>
<div className="lg:col-span-6 grid grid-cols-2 gap-6">
{[
{ label: 'Founded', value: '1998' },
{ label: 'Global Reach', value: '45+' },
{ label: 'Team Members', value: '120+' },
{ label: 'Innovation Awards', value: '12' },
].map((stat, i) => (
<div key={i} className="p-8 bg-white/5 backdrop-blur-md border border-white/10 rounded-[32px] hover:bg-white/10 transition-colors">
<div className="text-4xl font-extrabold text-accent mb-2">{stat.value}</div>
<div className="text-sm font-bold uppercase tracking-widest text-white/50">{stat.label}</div>
</div>
))}
<div className="lg:col-span-6 grid grid-cols-1 md:grid-cols-2 gap-6">
<div className="p-8 bg-white/5 backdrop-blur-md border border-white/10 rounded-[32px] hover:bg-white/10 transition-colors">
<div className="text-4xl font-extrabold text-accent mb-2">Expertise</div>
<div className="text-sm font-bold uppercase tracking-widest text-white/50">Decades of Industry Knowledge</div>
</div>
<div className="p-8 bg-white/5 backdrop-blur-md border border-white/10 rounded-[32px] hover:bg-white/10 transition-colors">
<div className="text-4xl font-extrabold text-accent mb-2">Network</div>
<div className="text-sm font-bold uppercase tracking-widest text-white/50">Strong Global Partnerships</div>
</div>
</div>
</div>
</Container>