import { Box, Stack, SimpleGrid, Image as ChakraImage, Flex, useBreakpointValue } from '@chakra-ui/react' import { motion } from 'framer-motion' function Hero1() { const MotionImage = motion(ChakraImage); const oilImage = useBreakpointValue({ base: "/images/lionglobe_product_mobile.webp", sm: "/images/lionglobe_product_pc.webp", }); return ( ); } export default Hero1;