zzz / frontend /src /components /features /waitlist /join-waitlist-anchor.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
323 Bytes
export function JoinWaitlistAnchor() {
return (
<a
href="https://www.all-hands.dev/join-waitlist"
target="_blank"
rel="noreferrer"
className="rounded bg-[#FFE165] text-black text-sm font-bold py-[10px] w-full text-center hover:opacity-80"
>
Join Waitlist
</a>
);
}