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

{user.username}

{user.description}

) }