punsnprotons commited on
Commit
e4c0c24
·
1 Parent(s): fba9840

Replace default static org card

Browse files
Files changed (2) hide show
  1. index.html +29 -11
  2. style.css +101 -16
index.html CHANGED
@@ -1,19 +1,37 @@
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>Wubble AI Organization Card</title>
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
+ <main class="org-card" aria-labelledby="org-title">
11
+ <section class="intro">
12
+ <p class="eyebrow">Audio and music AI</p>
13
+ <h1 id="org-title">Wubble AI</h1>
14
+ <p class="summary">
15
+ Creative audio tools for generating production-ready music, speech, and sound effects from simple prompts.
16
+ </p>
17
+ </section>
18
+
19
+ <section class="spaces" aria-label="Wubble AI Spaces">
20
+ <a href="https://huggingface.co/spaces/Wubble-AI/wubble-music-model-v1" target="_blank" rel="noreferrer">
21
+ Music Model V1
22
+ </a>
23
+ <a href="https://huggingface.co/spaces/Wubble-AI/wubble-speech-model-v1" target="_blank" rel="noreferrer">
24
+ Speech Model V1
25
+ </a>
26
+ <a href="https://huggingface.co/spaces/Wubble-AI/wubble-sound-effects-model-v1" target="_blank" rel="noreferrer">
27
+ Sound Effects V1
28
+ </a>
29
+ </section>
30
+
31
+ <section class="footer-links" aria-label="Wubble AI links">
32
+ <a href="https://www.wubble.ai" target="_blank" rel="noreferrer">wubble.ai</a>
33
+ <a href="https://github.com/wubbletech" target="_blank" rel="noreferrer">GitHub</a>
34
+ </section>
35
+ </main>
36
  </body>
37
  </html>
style.css CHANGED
@@ -1,28 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
 
 
13
  font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
1
+ :root {
2
+ color-scheme: dark;
3
+ font-family:
4
+ Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
5
+ sans-serif;
6
+ background: #080c14;
7
+ color: #f8fafc;
8
+ }
9
+
10
+ * {
11
+ box-sizing: border-box;
12
+ }
13
+
14
  body {
15
+ min-height: 100vh;
16
+ margin: 0;
17
+ padding: 20px;
18
+ background:
19
+ radial-gradient(circle at 12% 10%, rgba(248, 113, 22, 0.22), transparent 32%),
20
+ linear-gradient(135deg, #0b1020 0%, #0a0d14 56%, #130b0a 100%);
21
+ }
22
+
23
+ a {
24
+ color: inherit;
25
+ text-decoration: none;
26
+ }
27
+
28
+ .org-card {
29
+ display: grid;
30
+ gap: 16px;
31
+ max-width: 980px;
32
+ margin: 0 auto;
33
+ }
34
+
35
+ .intro {
36
+ display: grid;
37
+ gap: 8px;
38
+ }
39
+
40
+ .eyebrow {
41
+ width: max-content;
42
+ margin: 0;
43
+ padding: 4px 9px;
44
+ border: 1px solid rgba(251, 146, 60, 0.4);
45
+ border-radius: 999px;
46
+ background: rgba(251, 146, 60, 0.12);
47
+ color: #fed7aa;
48
+ font-size: 12px;
49
+ font-weight: 700;
50
+ line-height: 1;
51
  }
52
 
53
  h1 {
54
+ margin: 0;
55
+ color: #ffffff;
56
+ font-size: clamp(26px, 5vw, 44px);
57
+ line-height: 0.95;
58
+ letter-spacing: 0;
59
  }
60
 
61
+ .summary {
62
+ max-width: 760px;
63
+ margin: 0;
64
+ color: #d1d5db;
65
  font-size: 15px;
66
+ line-height: 1.45;
 
67
  }
68
 
69
+ .spaces,
70
+ .footer-links {
71
+ display: flex;
72
+ flex-wrap: wrap;
73
+ gap: 8px;
74
+ }
75
+
76
+ .spaces a {
77
+ padding: 9px 11px;
78
+ border: 1px solid rgba(255, 255, 255, 0.12);
79
+ border-radius: 8px;
80
+ background: rgba(255, 255, 255, 0.07);
81
+ color: #f8fafc;
82
+ font-size: 13px;
83
+ font-weight: 700;
84
+ line-height: 1;
85
+ transition:
86
+ border-color 160ms ease,
87
+ background 160ms ease,
88
+ transform 160ms ease;
89
  }
90
 
91
+ .spaces a:hover {
92
+ border-color: rgba(251, 146, 60, 0.75);
93
+ background: rgba(251, 146, 60, 0.18);
94
+ transform: translateY(-1px);
95
+ }
96
+
97
+ .footer-links a {
98
+ color: #fdba74;
99
+ font-size: 13px;
100
+ font-weight: 700;
101
+ text-decoration: underline;
102
+ text-underline-offset: 3px;
103
+ }
104
+
105
+ @media (max-width: 540px) {
106
+ body {
107
+ padding: 16px;
108
+ }
109
+
110
+ .spaces {
111
+ display: grid;
112
+ }
113
  }