echoctx commited on
Commit
321d4be
·
verified ·
1 Parent(s): 7ecc41b

fix org space index to BASE banner

Browse files
Files changed (1) hide show
  1. index.html +22 -17
index.html CHANGED
@@ -1,19 +1,24 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
19
  </html>
 
1
  <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Base Intelligence</title>
7
+ <style>
8
+ :root { color-scheme: light; }
9
+ body { margin: 0; font-family: ui-sans-serif, system-ui, sans-serif; background: #0b0b0c; color: #f5f5f5; }
10
+ .hero { width: 100%; display: block; }
11
+ main { max-width: 720px; margin: 2rem auto; padding: 0 1.25rem 3rem; text-align: center; }
12
+ h1 { font-size: 1.75rem; font-weight: 650; margin: 1rem 0 0.5rem; }
13
+ p { opacity: 0.85; line-height: 1.5; }
14
+ a { color: #9ecbff; }
15
+ </style>
16
+ </head>
17
+ <body>
18
+ <img class="hero" src="https://github.com/BaseIntelligence/base/raw/main/assets/banner.jpg" alt="BASE banner" />
19
+ <main>
20
+ <h1>Base Intelligence</h1>
21
+ <p>Decentralized AI challenges on Bittensor — <a href="https://huggingface.co/BaseIntelligence/top-prism-architecture">PRISM top architecture</a> and more.</p>
22
+ </main>
23
+ </body>
24
  </html>