import { Box, Stack, Image, Text, Flex, SimpleGrid } from '@chakra-ui/react' import { colors } from '../colors'; import { useEffect, useRef, useState } from 'react'; import { motion, useInView } from 'framer-motion'; // Create motion versions of Chakra components const MotionStack = motion(Stack); const MotionImage = motion(Image); const MotionBox = motion(Box); function Compare() { const compareRef = useRef(null); const isInView = useInView(compareRef, { once: true, amount: 0.3 }); return ( {/* Content container with z-index to appear above the background */} {/* Content here */} {/* Use a larger negative margin to pull the flex up into the grid area */} ) } export default Compare;