import React from 'react' import { motion } from "framer-motion"; import { useInView } from "react-intersection-observer"; import { CardOnlyText, CardWithButton, CardWithImage, CardWithOnlyImage, HeroSecn, } from "./Cards"; const ScrollReveal = ({ children, direction = "left" }) => { const { ref, inView } = useInView({ triggerOnce: true, threshold: 0.2 }); const variants = { left: { opacity: 0, x: -100 }, right: { opacity: 0, x: 100 }, up: { opacity: 0, y: 100 }, down: { opacity: 0, y: -100 }, }; return ( {children} ); }; function Hero2() { const myRef = document.querySelector('.scrollable-div') return (
) } export default Hero2