import { Box, Stack, Typography } from '@mui/material'; interface ExampleProps { title: string; description: string; } export default function ToolInfo({ title, description }: ExampleProps) { return ( {title} {description} ); }