| 1 | import { ReactNode } from "react"; |
| 2 | |
| 3 | interface AnimatedPageProps { |
| 4 | children: ReactNode; |
| 5 | } |
| 6 | |
| 7 | export default function AnimatedPage({ children }: AnimatedPageProps) { |
| 8 | // Simple fade-in; use Framer Motion or React Spring for more advanced animation |
| 9 | return <div className="fade-in">{children}</div>; |
| 10 | } |