File size: 447 Bytes
9c58e18
 
 
 
 
 
 
 
eea04ba
9c58e18
eea04ba
2e12a66
9c58e18
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/FacePoke", "_blank")
      }}>
      <span className="hidden md:inline">Try my new space</span>
      <span className="inline md:hidden">...</span>
    </Button>
  )
}