import { Box, HStack, Skeleton, SkeletonText, VStack, useBreakpointValue } from '@chakra-ui/react' const ProductCardSkeleton = () => { const wrapperHeight = useBreakpointValue({ base: '300px', md: '350px' }) return ( Loading... ) } const skeletonColors = { startColor: 'gray.200', endColor: 'gray.400' } export default ProductCardSkeleton