computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
type EmptyStackMessageProps = { |
|
number: number; |
|
title: string; |
|
description: string; |
|
buttonText: string; |
|
buttonLink: string; |
|
}; |
|
|
|
export function EmptyStackMessage(props: EmptyStackMessageProps) { |
|
const { number, title, description, buttonText, buttonLink } = props; |
|
|
|
return ( |
|
<div className="absolute inset-0 flex items-center justify-center rounded-md bg-black/50"> |
|
<div className="flex max-w-[200px] flex-col items-center justify-center rounded-md bg-white p-4 shadow-sm"> |
|
<span className="flex h-8 w-8 items-center justify-center rounded-full bg-gray-300 text-white"> |
|
{number} |
|
</span> |
|
<div className="my-3 text-center"> |
|
<h3 className="text-sm font-medium text-black">{title}</h3> |
|
<p className="text-center text-xs text-gray-500">{description}</p> |
|
</div> |
|
|
|
<a |
|
href={buttonLink} |
|
className="rounded-md bg-black px-3 py-1 text-xs text-white transition-transform hover:scale-105 hover:bg-gray-900" |
|
> |
|
{buttonText} |
|
</a> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|