import type { FeaturedLink } from '@/landings/components/ProductLandingContext' import cx from 'classnames' import styles from './Landings.module.scss' const { hoverShadowLarge } = styles 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 (
  • {guide.title}

    {guide.intro || ''}

  • ) }