🎉 chore(init): project initialization

This commit is contained in:
web@ppanel
2024-11-14 01:22:43 +07:00
commit 829edfa824
479 changed files with 61413 additions and 0 deletions
@@ -0,0 +1,34 @@
'use client';
import { cn } from '../../lib/utils';
interface AvatarCirclesProps {
className?: string;
numPeople?: number;
avatarUrls: string[];
}
const AvatarCircles = ({ numPeople, className, avatarUrls }: AvatarCirclesProps) => {
return (
<div className={cn('z-10 flex -space-x-4 rtl:space-x-reverse', className)}>
{avatarUrls.map((url, index) => (
<img
key={index}
className='h-10 w-10 rounded-full border-2 border-white dark:border-gray-800'
src={url}
width={40}
height={40}
alt={`Avatar ${index + 1}`}
/>
))}
<a
className='flex h-10 w-10 items-center justify-center rounded-full border-2 border-white bg-black text-center text-xs font-medium text-white hover:bg-gray-600 dark:border-gray-800 dark:bg-white dark:text-black'
href=''
>
+{numPeople}
</a>
</div>
);
};
export default AvatarCircles;