import React from 'react'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; const DndCard = ({ title, description, link, icon }) => { return ( {/* Silk Ribbon */}
{/* Background Runes */}
{/* Ink Splatters */}
{/* Parchment Texture Overlay */}
{/* Inner Border Shadow - Darker */}
{/* Ornate corners - larger and more detailed */}
{icon}

{title}

{description}

{/* Mini Wax Seal at bottom */}
SF
{/* Interaction hint - refined and darker */}
Open_Script
); }; export default DndCard;