import React from 'react'; import Image from '@theme/IdealImage'; import { Showcase } from '../../../utils/apiTypes'; import { mapUrl } from '../../../utils/map'; import { CardTags } from './CardTags'; export interface CardProps { network: Showcase; } export const Card = React.memo(({ network }: CardProps) => (
{network.title}

{network.title}

{network.summary}
Read more
));