FacePoke / client /src /components /PoweredBy.tsx
jbilcke-hf's picture
jbilcke-hf HF staff
fix image switch + add download button
6989c25
raw
history blame
592 Bytes
export function PoweredBy() {
return (
<div className="flex flex-row items-center justify-center font-sans mt-4 w-full">
{/*<span className="text-neutral-900 text-sm"
style={{ textShadow: "rgb(255 255 255 / 80%) 0px 0px 2px" }}>
Best hosted on
</span>*/}
<span className="mr-1">
<img src="/hf-logo.svg" alt="Hugging Face" className="w-5 h-5" />
</span>
<span className="text-neutral-900 text-sm font-semibold"
style={{ textShadow: "rgb(255 255 255 / 80%) 0px 0px 2px" }}>
Hugging Face
</span>
</div>
)
}