"use client";
import { motion, type HTMLMotionProps } from "framer-motion";
import type { ReactNode } from "react";
const fadeUp = {
initial: { opacity: 0, y: 8 },
animate: { opacity: 1, y: 0 },
transition: { duration: 0.28, ease: [0.22, 1, 0.36, 1] as const },
};
const fadeIn = {
initial: { opacity: 0 },
animate: { opacity: 1 },
transition: { duration: 0.2 },
};
export function ExperienceFadeUp({
children,
className,
...rest
}: { children: ReactNode; className?: string } & HTMLMotionProps<"div">) {
return (
{children}
);
}
export function ExperienceFadeIn({
children,
className,
...rest
}: { children: ReactNode; className?: string } & HTMLMotionProps<"div">) {
return (
{children}
);
}
export function ExperienceStagger({
children,
className,
}: {
children: ReactNode;
className?: string;
}) {
return (
{children}
);
}