Initial commit

This commit is contained in:
Ubuntu
2026-03-01 13:23:49 +00:00
commit a8e52093aa
1485 changed files with 453467 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { motion } from 'framer-motion';
export function PreviewCard({ children }) {
return (
<motion.div
className="preview-card"
initial={{ opacity: 0, scale: 0.98 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ duration: 0.25 }}
>
{children}
</motion.div>
);
}