import { Grid, useMediaQuery, useTheme } from "@mui/material"; import wasteimage from "../components/imageandgif/loopwastemanage.png"; // Desktop Image import mobileWasteImage from "../components/imageandgif/Soil & Water Contamination mob.png"; // Mobile Image const WasteImageSection = () => { const theme = useTheme(); // Use the existing theme, don't redeclare it const isMobile = useMediaQuery(theme.breakpoints.down("sm")); // For screens < 600px return ( Waste Image ); }; export default WasteImageSection;