"use client";

import { LazyMotion, domAnimation } from "framer-motion";

export default function CinematicMotionProvider({ children }: { children: React.ReactNode }) {
  return (
    <LazyMotion features={domAnimation} strict>
      {children}
    </LazyMotion>
  );
}
