anzorq commited on
Commit
0d707b5
β€’
1 Parent(s): 5c1d548
Files changed (1) hide show
  1. pages/index.js +10 -1
pages/index.js CHANGED
@@ -56,7 +56,7 @@ export default function Home() {
56
  }, []);
57
 
58
  return (
59
- <main className={`flex min-h-screen flex-col items-center p-8 md:px-24 py-20 bg-gray-950 ${inter.className}`}>
60
  {/* <BackgroundEmojiGrid /> */}
61
  <h1 className="text-4xl md:text-6xl font-bold text-center mb-12">πŸ€— Hugging Face Spaces</h1>
62
  <SearchBar onSearch={onSearch} />
@@ -81,6 +81,15 @@ export default function Home() {
81
  ))}
82
  </div>
83
  )}
 
 
 
 
 
 
 
 
 
84
  </main>
85
  );
86
  }
 
56
  }, []);
57
 
58
  return (
59
+ <main className={`flex min-h-screen flex-col items-center p-8 md:px-24 pt-20 bg-gray-950 ${inter.className} justify-between`}>
60
  {/* <BackgroundEmojiGrid /> */}
61
  <h1 className="text-4xl md:text-6xl font-bold text-center mb-12">πŸ€— Hugging Face Spaces</h1>
62
  <SearchBar onSearch={onSearch} />
 
81
  ))}
82
  </div>
83
  )}
84
+ <footer className="text-center text-gray-500 text-sm mt-8 bottom-0 w-full p-4">
85
+ Created by Anzor Qunash
86
+ <br />
87
+ <a href="https://github.com/qunash" target="_blank" rel="noopener noreferrer">GitHub</a>
88
+ <span className="mx-2">β€’</span>
89
+ <a href="https://twitter.com/hahahahohohe" target="_blank" rel="noopener noreferrer">Twitter</a>
90
+ <span className="mx-2">β€’</span>
91
+ <a href="https://www.buymeacoffee.com/anzorq" target="_blank" rel="noopener noreferrer">Buy me a coffee</a>
92
+ </footer>
93
  </main>
94
  );
95
  }