diff --git a/apps/site/components/Common/AvatarGroup/Avatar/index.tsx b/apps/site/components/Common/AvatarGroup/Avatar/index.tsx index 4837f9b40b585..70dce497d2bdc 100644 --- a/apps/site/components/Common/AvatarGroup/Avatar/index.tsx +++ b/apps/site/components/Common/AvatarGroup/Avatar/index.tsx @@ -1,6 +1,8 @@ import * as RadixAvatar from '@radix-ui/react-avatar'; import type { FC } from 'react'; +import Link from '@/components/Link'; + import styles from './index.module.css'; export type AvatarProps = { @@ -11,16 +13,18 @@ export type AvatarProps = { const Avatar: FC = ({ src, alt, fallback }) => ( - - - {fallback} - + + + + {fallback} + + );