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