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.
16 lines
469 B
16 lines
469 B
12 months ago
|
import { PartyPopper } from 'lucide-react';
|
||
|
|
||
|
export function AppChecklist() {
|
||
|
return (
|
||
|
<div className="fixed bottom-6 right-3">
|
||
|
<a
|
||
|
href="/get-started"
|
||
|
className="flex items-center gap-2 rounded-full border border-slate-900 bg-white py-2 pl-3 pr-4 text-sm font-medium hover:bg-zinc-200"
|
||
|
>
|
||
|
<PartyPopper className="relative -top-[2px] h-[20px] w-[20px] text-purple-600" />
|
||
|
Welcome! Start here
|
||
|
</a>
|
||
|
</div>
|
||
|
);
|
||
|
}
|