File size: 601 Bytes
e123fec
d69879c
 
e123fec
d69879c
e123fec
 
 
d69879c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export function About() {
  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" }}>
        Click and drag on the image.
      </span>
      <span className="ml-2 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>
  )
}