import { Card, CardContent, Typography, Link, Stack, Box, Divider, } from '@mui/material'; import { Link as LinkIcon, OpenInNew } from '@mui/icons-material'; import type { LinkCollection } from '../../types/config.types'; interface LinksWidgetProps { collection: LinkCollection; } function LinksWidget({ collection }: LinksWidgetProps) { return ( {collection.name} {collection.links.map((link, i) => ( {link.name} ))} ); } export default LinksWidget;