feat(privat/CV): sync to latest upstream (cv-upstream/main, 30f9608b)

This commit is contained in:
2026-07-07 15:20:55 +02:00
parent 8ac664d33d
commit a4efabbc60
417 changed files with 48564 additions and 712 deletions
@@ -0,0 +1,23 @@
import React from 'react'
import { useMeta } from '../hooks/useContent'
import './StatsCube.css'
export default function StatsCube() {
const { stats } = useMeta()
if (!stats?.items || stats.items.length < 4) return null
const faces = stats.items.slice(0, 4)
return (
<section className="cube-section">
<div className="cube-container">
{faces.map((stat, i) => (
<div className={`cube-face face-${i + 1}`} key={i}>
<div className="cube-stat-value text-gradient">{stat.value}</div>
<div className="cube-stat-label">{stat.label}</div>
</div>
))}
</div>
</section>
)
}