simonsu2000 commited on
Commit
7af15b1
ยท
verified ยท
1 Parent(s): 40b882c

Add index.html for org card static page

Browse files
Files changed (1) hide show
  1. index.html +41 -19
index.html CHANGED
@@ -1,19 +1,41 @@
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.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>