"use client";

import { MotionConfig } from "framer-motion";
import type { ReactNode } from "react";

/* Deliberately ignores the OS-level reduced-motion preference: every
   framer-motion animation plays in full for every visitor. "never" is
   framer-motion's explicit opt-out - do not change it back to "user". */
export function MotionProvider({ children }: { children: ReactNode }) {
  return <MotionConfig reducedMotion="never">{children}</MotionConfig>;
}
