import { Box, VStack } from "@chakra-ui/react" import { motion } from "framer-motion" import React, { FC } from "react" import { OPACITY_ON_LOAD } from "../Layouts/animations" // ✅ Wrap Chakra components with Framer Motion const MotionVStack = motion(VStack) interface MainFrameProps { children: React.ReactNode title?: string transperant?:boolean props?:any } const MainFrame: FC = ({ children, transperant, props }) => { return ( {children} ) } export default MainFrame