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