Add index.html for org card static page
Browse files- index.html +41 -19
index.html
CHANGED
|
@@ -1,19 +1,41 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0">
|
| 6 |
+
<title>OBay Data</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 9 |
+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
|
| 10 |
+
.card { background: white; border-radius: 16px; padding: 48px; max-width: 720px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
|
| 11 |
+
h1 { font-size: 2.2em; margin-bottom: 8px; color: #1a1a2e; }
|
| 12 |
+
.tagline { color: #555; font-size: 1.1em; margin-bottom: 32px; }
|
| 13 |
+
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
|
| 14 |
+
.item { background: #f8f9ff; border-radius: 10px; padding: 16px; }
|
| 15 |
+
.item .emoji { font-size: 1.5em; margin-bottom: 6px; }
|
| 16 |
+
.item .title { font-weight: 600; color: #333; margin-bottom: 4px; }
|
| 17 |
+
.item .desc { color: #666; font-size: 0.9em; }
|
| 18 |
+
.contact { text-align: center; padding-top: 24px; border-top: 1px solid #eee; }
|
| 19 |
+
.contact a { color: #667eea; text-decoration: none; margin: 0 12px; font-weight: 500; }
|
| 20 |
+
.contact a:hover { text-decoration: underline; }
|
| 21 |
+
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } .card { padding: 28px; } }
|
| 22 |
+
</style>
|
| 23 |
+
</head>
|
| 24 |
+
<body>
|
| 25 |
+
<div class="card">
|
| 26 |
+
<h1>๐ OBay Data</h1>
|
| 27 |
+
<p class="tagline">World-class training data production for frontier AI models.</p>
|
| 28 |
+
<div class="grid">
|
| 29 |
+
<div class="item"><div class="emoji">๐ง </div><div class="title">Pre-training Data</div><div class="desc">Large-scale, curated corpora for foundation model training</div></div>
|
| 30 |
+
<div class="item"><div class="emoji">๐ฏ</div><div class="title">Post-training Data</div><div class="desc">SFT, RLHF, DPO datasets for alignment and instruction-following</div></div>
|
| 31 |
+
<div class="item"><div class="emoji">๐ค</div><div class="title">Embodied AI Data</div><div class="desc">Robotics trajectories, gameplay recordings, sensor logs for world models</div></div>
|
| 32 |
+
<div class="item"><div class="emoji">๐ผ๏ธ</div><div class="title">Multimodal Data</div><div class="desc">Image editing, composition, style transfer instruction sets</div></div>
|
| 33 |
+
</div>
|
| 34 |
+
<div class="contact">
|
| 35 |
+
<a href="https://obaydata.com">๐ obaydata.com</a>
|
| 36 |
+
<a href="https://github.com/simonsu20000">๐ป GitHub</a>
|
| 37 |
+
<a href="mailto:simon.su@obaydata.com">โ๏ธ simon.su@obaydata.com</a>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
</body>
|
| 41 |
+
</html>
|