File size: 323 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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>
);
}
|