import { Box, Stack, Typography, useTheme } from "@mui/material"; import Image from "next/image"; const ImageFormContent = ({ image, title }) => { const theme = useTheme(); return ( {title} Image ); }; export default ImageFormContent;