File size: 883 Bytes
08476ef
9283c8b
08476ef
9283c8b
 
 
759189b
 
 
 
 
 
9283c8b
 
 
 
 
 
 
 
08476ef
 
 
9283c8b
 
 
08476ef
 
9283c8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function Header() {
  return (
    <header className="bg-white shadow-sm border-b">
      <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="flex items-center justify-center h-16">
          <div className="flex items-center space-x-3">
            <div className="w-12 h-12 flex items-center justify-center">
              <img
                src="/hf-logo.svg"
                alt="Hugging Face"
                className="w-12 h-12"
              />
            </div>
            <div>
              <h1 className="text-xl font-bold text-gray-900">
                Transformers.js Playground
              </h1>
              <p className="text-sm text-gray-500">
                Run Hugging Face models in your browser
              </p>
            </div>
          </div>
        </div>
      </div>
    </header>
  );
}

export default Header;