/* reveal.tsx spboucher.ai Web Author: Simon-Pierre Boucher Mail: contact@spboucher.ai */ "use client"; import * as React from "react"; import { motion } from "framer-motion"; interface RevealProps { children: React.ReactNode; delay?: number; className?: string; } export function Reveal({ children, delay = 0, className }: RevealProps) { return ( {children} ); }