feat: mise à jour sécurité CVE-2025-55182 (Next.js 15.5.7, React 19.1.2)

This commit is contained in:
jessy-david-dev
2026-02-08 17:24:48 +01:00
commit b9a9d687b6
64 changed files with 15638 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
"use client";
import RedstoneParticles from "@/components/RedstoneParticles";
import { motion } from "framer-motion";
export default function MotionHeading() {
return (
<motion.section
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.35, ease: "easeOut", delay: 0.2 }}
className="flex justify-center py-8"
>
<span className="relative inline-block">
<h2
className="text-4xl sm:text-5xl font-extrabold leading-snug pb-1
bg-gradient-to-r from-red-600 via-orange-500 to-red-600
bg-clip-text text-transparent"
>
Tableau des projets
</h2>
<RedstoneParticles className="absolute inset-0" density={15} maxRadius={2} />
</span>
</motion.section>
);
}