Untitled
unknown
plain_text
2 months ago
489 B
1
Indexable
import { Card } from "@/components/ui/card"; import { motion } from "framer-motion"; export default function MaskaSticker() { return ( <div className="flex items-center justify-center h-screen bg-gray-900"> <Card className="p-6 bg-black shadow-lg border border-gray-700"> <motion.h1 className="text-white text-6xl font-bold uppercase tracking-widest" initial={{ opacity: 0, y: -20 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.8 }} > Maska </motion.h1> </Card> </div> ); }
Editor is loading...
Leave a Comment