nx/nx-dev/ui-common/src/lib/champion-card.tsx
2023-05-12 17:00:36 +00:00

48 lines
1.8 KiB
TypeScript

import { ChatBubbleLeftIcon, MapIcon } from '@heroicons/react/24/solid';
interface ContactDetails {
label: string;
link: string;
}
export interface Champion {
name: string;
location: string;
expertise: string;
imageUrl: string;
contact: ContactDetails[];
}
export function ChampionCard({ data }: { data: Champion }): JSX.Element {
return (
<figure className="relative flex flex-col-reverse rounded-lg border border-slate-200 bg-white/40 p-4 text-sm shadow-sm transition focus-within:ring-2 focus-within:ring-blue-500 focus-within:ring-offset-2 hover:bg-white dark:border-slate-800/40 dark:bg-slate-800/60 dark:hover:bg-slate-800">
<blockquote className="mt-4 text-slate-600 dark:text-slate-400">
<p className="mb-4">{data.expertise}</p>
<div className="mt-0.5 ml text-xs text-slate-400 dark:text-slate-500 inline">
<ChatBubbleLeftIcon className="h-4 w-4 inline" />{' '}
{data.contact[0].label}
</div>
</blockquote>
<figcaption className="flex items-center space-x-4">
<img
src={data.imageUrl}
alt={data.name}
className="h-12 w-12 flex-none rounded-full border border-slate-200 object-cover dark:border-slate-800/40"
loading="lazy"
/>
<div className="flex-auto">
<div className="font-semibold text-slate-500 dark:text-slate-300">
<a target="_blank" rel="noreferrer" href={data.contact[0].link}>
<span className="absolute inset-0"></span>
{data.name}
</a>
</div>
<div className="mt-0.5 text-xs text-slate-400 dark:text-slate-500">
<MapIcon className="h-4 w-4 inline" /> {data.location}
</div>
</div>
</figcaption>
</figure>
);
}