Spaces:
Configuration error
Configuration error
fix org space index to BASE banner
Browse files- index.html +22 -17
index.html
CHANGED
|
@@ -1,19 +1,24 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|