import { motion } from 'framer-motion'; import type { ReactNode } from 'react'; interface FloatingCardProps { children: ReactNode; className?: string; delay?: number; style?: React.CSSProperties; } export default function FloatingCard({ children, className = '', delay = 0, style }: FloatingCardProps) { return ( {children} ); }