import { Box, Grid, Stack, Typography } from '@mui/material'; import ToolCard from './ToolCard'; import { IconifyIcon } from '@iconify/react'; export interface ToolCardProps { title: string; description: string; link: string; icon: IconifyIcon | string; } interface AllToolsProps { title: string; toolCards: ToolCardProps[]; } export default function AllTools({ title, toolCards }: AllToolsProps) { return ( {title} {toolCards.map((card, index) => ( ))} ); }