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.
39 lines
1.9 KiB
39 lines
1.9 KiB
export function SkeletonRoadmapHeader() { |
|
return ( |
|
<div className="border-b"> |
|
<div className="container relative py-5 sm:py-12"> |
|
<div className="flex items-center gap-1.5"> |
|
<div className="h-4 w-4 animate-pulse rounded-full bg-gray-300" /> |
|
<div className="h-5 w-5/12 animate-pulse rounded-md bg-gray-200" /> |
|
</div> |
|
<div className="mb-3 mt-4 sm:mb-4"> |
|
<div className="h-8 w-1/2 animate-pulse rounded-md bg-gray-300 sm:mb-2 sm:h-10" /> |
|
<div className="mt-0.5 h-5 w-1/3 animate-pulse rounded-md bg-gray-200 sm:h-7" /> |
|
</div> |
|
|
|
<div className="flex justify-between gap-2 sm:gap-0"> |
|
<div className='flex gap-1 sm:gap-2'> |
|
<div className="h-7 w-[35.04px] animate-pulse rounded-md bg-gray-300 sm:h-8 sm:w-32" /> |
|
<div className="h-7 w-[35.04px] animate-pulse rounded-md bg-gray-300 sm:h-8 sm:w-[85px]" /> |
|
</div> |
|
<div className="flex items-center gap-2"> |
|
<div className="h-7 w-[60.52px] animate-pulse rounded-md bg-gray-300 sm:h-8 sm:w-[139.71px]" /> |
|
<div className="h-7 w-[71.48px] animate-pulse rounded-md bg-gray-300 sm:h-8 sm:w-[100.34px]" /> |
|
<div className="h-7 w-[32px] animate-pulse rounded-md bg-gray-300 sm:h-8 sm:w-[89.73px]" /> |
|
</div> |
|
</div> |
|
|
|
<div className="mb-0 mt-4 rounded-md border-0 sm:-mb-[65px] sm:mt-7 sm:border"> |
|
<div |
|
data-progress-nums-container |
|
className="striped-loader relative hidden h-8 items-center justify-between rounded-md bg-white sm:flex" |
|
/> |
|
<div |
|
data-progress-nums-container |
|
className="striped-loader relative -mb-2 flex h-[34px] items-center justify-between rounded-md border bg-white px-2 py-1.5 text-sm text-gray-700 sm:hidden" |
|
/> |
|
</div> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|