'use client' import { motion } from 'motion/react' import { type ReactNode } from 'react' export function AnimatedCard({ children, index = 0 }: { children: ReactNode; index?: number }) { return ( {children} ) } export function AnimatedList({ children }: { children: ReactNode }) { return ( {children} ) }