jbilcke-hf's picture
jbilcke-hf HF Staff
let's add some ad
9c58e18
raw
history blame contribute delete
482 Bytes
import { Button } from "@/components/ui/button"
export function Advert() {
return (
<Button
variant="outline"
className="bg-yellow-400 border-stone-600/30 hover:bg-yellow-300"
onClick={() => {
window.open("https://huggingface.co/spaces/jbilcke-hf/ai-stories-factory", "_blank")
}}>
<span className="hidden md:inline">Try the AI Stories Factory</span>
<span className="inline md:hidden">AI Stories Factory</span>
</Button>
)
}