2022-12-06 12:54:34 +00:00
|
|
|
import Link from 'next/link'
|
|
|
|
import clsx from 'clsx'
|
|
|
|
|
|
|
|
function ChevronRightIcon(props) {
|
2023-01-05 20:03:09 +00:00
|
|
|
return (
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" aria-hidden="true" {...props}>
|
|
|
|
<path
|
|
|
|
d="M6.75 5.75 9.25 8l-2.5 2.25"
|
|
|
|
strokeWidth="1.5"
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 20:03:09 +00:00
|
|
|
export function Card({as: Component = 'div', className, small, children}) {
|
|
|
|
return (
|
|
|
|
<Component
|
|
|
|
className={clsx(className, 'group relative flex flex-col items-start', small && 'md:flex-row justify-between')}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</Component>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 20:03:09 +00:00
|
|
|
Card.Link = function CardLink({children, ...props}) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div
|
|
|
|
className="absolute -inset-y-6 -inset-x-4 z-0 scale-95 bg-zinc-50 opacity-0 transition group-hover:scale-100 group-hover:opacity-100 dark:bg-zinc-800/50 sm:-inset-x-6 sm:rounded-2xl"/>
|
|
|
|
<Link {...props}>
|
|
|
|
<span className="absolute -inset-y-6 -inset-x-4 z-20 sm:-inset-x-6 sm:rounded-2xl"/>
|
|
|
|
<span className="relative z-10">{children}</span>
|
|
|
|
</Link>
|
|
|
|
</>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 20:03:09 +00:00
|
|
|
Card.Title = function CardTitle({as: Component = 'h2', href, children}) {
|
|
|
|
return (
|
|
|
|
<Component className="text-base font-semibold tracking-tight text-zinc-800 dark:text-zinc-100">
|
|
|
|
{href ? <Card.Link href={href}>{children}</Card.Link> : children}
|
|
|
|
</Component>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 20:03:09 +00:00
|
|
|
Card.Description = function CardDescription({children}) {
|
|
|
|
return (
|
|
|
|
<p className="relative z-10 mt-2 text-sm text-zinc-600 dark:text-zinc-400">
|
|
|
|
{children}
|
|
|
|
</p>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 20:03:09 +00:00
|
|
|
Card.Cta = function CardCta({children}) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
aria-hidden="true"
|
|
|
|
className="relative z-10 mt-4 flex items-center text-sm font-medium text-zinc-400 group-hover:text-indigo-500 dark:text-zinc-200"
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
<ChevronRightIcon className="ml-1 h-4 w-4 stroke-current"/>
|
|
|
|
</div>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Card.Eyebrow = function CardEyebrow({
|
2023-01-05 20:03:09 +00:00
|
|
|
as: Component = 'p',
|
|
|
|
decorate = false,
|
|
|
|
className,
|
|
|
|
children,
|
|
|
|
...props
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<Component
|
|
|
|
className={clsx(
|
|
|
|
className,
|
|
|
|
'relative z-10 order-first mb-3 flex items-center text-sm text-zinc-500 dark:text-zinc-400',
|
|
|
|
decorate && 'pl-3.5'
|
|
|
|
)}
|
|
|
|
{...props}
|
2022-12-06 12:54:34 +00:00
|
|
|
>
|
2023-01-05 20:03:09 +00:00
|
|
|
{decorate && (
|
|
|
|
<span
|
|
|
|
className="absolute inset-y-0 left-0 flex items-center"
|
|
|
|
aria-hidden="true"
|
|
|
|
>
|
|
|
|
<span className="h-4 w-0.5 rounded-full bg-zinc-200 dark:bg-zinc-500"/>
|
2022-12-06 12:54:34 +00:00
|
|
|
</span>
|
2023-01-05 20:03:09 +00:00
|
|
|
)}
|
|
|
|
{children}
|
|
|
|
</Component>
|
|
|
|
)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|