app-ui / headings / page-headings
Card With Avatar And Stats
09-card-with-avatar-and-stats.jsx
const user = {
name: 'Rebecca Nicholas',
role: 'Product Designer',
imageUrl:
'https://images.unsplash.com/photo-1550525811-e5869dd03032?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80',
}
const stats = [
{ label: 'Vacation days left', value: 12 },
{ label: 'Sick days left', value: 4 },
{ label: 'Personal days left', value: 2 },
]
export default function Example() {
return (
<div className="overflow-hidden rounded-lg bg-white shadow-sm dark:bg-gray-900 dark:shadow-none dark:outline dark:-outline-offset-1 dark:outline-white/10">
<h2 id="profile-overview-title" className="sr-only">
Profile Overview
</h2>
<div className="bg-white p-6 dark:bg-gray-800/75">
<div className="sm:flex sm:items-center sm:justify-between">
<div className="sm:flex sm:space-x-5">
<div className="shrink-0">
<img
alt=""
src={user.imageUrl}
className="mx-auto size-20 rounded-full dark:outline dark:-outline-offset-1 dark:outline-white/10"
/>
</div>
<div className="mt-4 text-center sm:mt-0 sm:pt-1 sm:text-left">
<p className="text-sm font-medium text-gray-600 dark:text-gray-400">Welcome back,</p>
<p className="text-xl font-bold text-gray-900 sm:text-2xl dark:text-white">{user.name}</p>
<p className="text-sm font-medium text-gray-600 dark:text-gray-400">{user.role}</p>
</div>
</div>
<div className="mt-5 flex justify-center sm:mt-0">
<a
href="#"
className="flex items-center justify-center rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 shadow-xs inset-ring inset-ring-gray-300 hover:bg-gray-50 dark:bg-white/10 dark:text-white dark:shadow-none dark:inset-ring-white/5 dark:hover:bg-white/20"
>
View profile
</a>
</div>
</div>
</div>
<div className="grid grid-cols-1 divide-y divide-gray-200 border-t border-gray-200 bg-gray-50 sm:grid-cols-3 sm:divide-x sm:divide-y-0 dark:divide-white/10 dark:border-white/10 dark:bg-gray-800/50">
{stats.map((stat) => (
<div key={stat.label} className="px-6 py-5 text-center text-sm font-medium">
<span className="text-gray-900 dark:text-white">{stat.value}</span>{' '}
<span className="text-gray-600 dark:text-gray-400">{stat.label}</span>
</div>
))}
</div>
</div>
)
}