screenshot-to-code/frontend/src/components/PicoBadge.tsx

13 lines
331 B
TypeScript

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