top of page
Schedule your service
Need more detail? Then schedule a 4 or more card reading
Check out our availability and book the date and time that works for you
bottom of page
1267677510559929
// --- Animation Components ---
const AnimatedElement: React.FC<{
children: React.ReactNode;
className?: string;
delay?: number;
direction?: 'up' | 'left' | 'right' | 'fade';
}> = ({
children,
className = '',
delay = 0,
direction = 'up'
}) => {
const ref = useRef