import cx from 'classnames' import styles from './Landings.module.scss' const { hoverShadowLarge } = styles type Props = { repo: { repo: string description: string } href?: string } export const RepoCard = ({ repo, href }: Props) => { return (
{repo.repo}

{repo.repo}

{repo.description}

) }