add feedback link for hosted version

This commit is contained in:
Abi Raja 2023-11-27 17:42:21 -05:00
parent 13a19cdea2
commit 032d9943a8

View File

@ -1,12 +1,25 @@
export function PicoBadge() { export function PicoBadge() {
return ( return (
<>
<a
href="https://screenshot-to-code.canny.io/feature-requests"
target="_blank"
>
<div
className="fixed z-50 bottom-16 right-5 rounded-md shadow bg-black
text-white px-4 text-xs py-3 cursor-pointer"
>
feedback?
</div>
</a>
<a href="https://picoapps.xyz?ref=screenshot-to-code" target="_blank"> <a href="https://picoapps.xyz?ref=screenshot-to-code" target="_blank">
<div <div
className="fixed z-50 bottom-5 right-5 rounded-md shadow bg-black className="fixed z-50 bottom-5 right-5 rounded-md shadow text-black
text-white px-4 text-xs py-3 cursor-pointer" bg-white px-4 text-xs py-3 cursor-pointer"
> >
an open source project by Pico an open source project by Pico
</div> </div>
</a> </a>
</>
); );
} }