import type { FeaturedLink } from 'components/context/ProductLandingContext' type Props = { guide: FeaturedLink } export const GuideCard = ({ guide }: Props) => { const authors = guide.authors && guide.authors.length > 0 ? guide.authors : ['GitHub'] const authorString = `@${authors.join(', @')}` return (
) }