"use client" import { motion } from "framer-motion" import type { ReactNode } from "react" import { cn } from "@/lib/utils" interface PageRevealProps { className?: string children: ReactNode } const PageReveal = ({ className, children }: PageRevealProps) => ( {children} ) export default PageReveal