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
+23
View File
@@ -0,0 +1,23 @@
"use client";
import { motion } from "framer-motion";
export default function McSplash() {
return (
<motion.span
initial={{ scale: 0, rotate: -15 }}
animate={{ scale: 1, rotate: -15 }}
transition={{ type: "spring", stiffness: 220, damping: 12, delay: 0.3 }}
className="
pointer-events-none absolute left-4
top-1/2 -translate-y-1/2
-rotate-[3deg]
select-none whitespace-nowrap
text-[clamp(12px,3vw,18px)] font-extrabold italic
text-yellow-300 drop-shadow-[2px_2px_0_#000]
"
>
Instance&nbsp;Cobble
</motion.span>
);
}