Premier commit de la v2 de l'app

This commit is contained in:
UltraLionFr
2025-07-29 05:15:33 +02:00
parent 2f14898357
commit b593c60ab2
67 changed files with 5003 additions and 388 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>
);
}