import { Box, Stack } from '@mui/material'; import Typography from '@mui/material/Typography'; interface ToolHeaderProps { title: string; description: string; image?: string; } export default function ToolHeader({ image, title, description }: ToolHeaderProps) { return ( {title} {description} {image && } ); }