import { Box, Typography, useTheme } from "@mui/material"; interface Props { image: string; text: string; } export default function CardWithImage({ image, text }: Props) { const theme = useTheme(); return ( card {text} ); }