elmadany commited on
Commit
2f60d4e
·
verified ·
1 Parent(s): 4ba8aea

Update public/index.html

Browse files
Files changed (1) hide show
  1. public/index.html +58 -0
public/index.html CHANGED
@@ -148,6 +148,48 @@
148
  .arrow-down { color: #d97706; font-size: 10px; }
149
  .arrow-up { color: #16a34a; font-size: 10px; }
150
  .empty-msg { color: #64748b; font-style: italic; padding: 20px; text-align: center; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  </style>
152
  </head>
153
  <body>
@@ -176,6 +218,22 @@
176
  <a href="https://github.com/UBC-NLP/simba" target="_blank" class="action-btn bg-gray"><i class="fa-brands fa-github"></i> GitHub</a>
177
 
178
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  </div>
180
  </div>
181
 
 
148
  .arrow-down { color: #d97706; font-size: 10px; }
149
  .arrow-up { color: #16a34a; font-size: 10px; }
150
  .empty-msg { color: #64748b; font-style: italic; padding: 20px; text-align: center; }
151
+
152
+
153
+ /* Action Buttons */
154
+ .action-buttons {
155
+ display: flex;
156
+ flex-wrap: wrap;
157
+ gap: 15px;
158
+ justify-content: center;
159
+ margin-top: 30px;
160
+ }
161
+
162
+ .action-btn {
163
+ padding: 14px 28px;
164
+ border-radius: 50px;
165
+ color: white;
166
+ font-weight: 600;
167
+ font-size: 0.95rem;
168
+ display: inline-flex;
169
+ align-items: center;
170
+ gap: 10px;
171
+ transition: all 0.3s ease;
172
+ border: none;
173
+ cursor: pointer;
174
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
175
+ }
176
+
177
+ .action-btn:hover {
178
+ transform: translateY(-3px);
179
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
180
+ }
181
+
182
+ .action-btn i {
183
+ font-size: 1.1rem;
184
+ }
185
+
186
+ .btn-red { background: var(--grad-red); }
187
+ .btn-indigo { background: var(--grad-indigo); }
188
+ .btn-orange { background: var(--grad-orange); }
189
+ .btn-blue { background: var(--grad-blue); }
190
+ .btn-green { background: var(--grad-green); }
191
+ .btn-dark { background: var(--grad-dark); }
192
+
193
  </style>
194
  </head>
195
  <body>
 
218
  <a href="https://github.com/UBC-NLP/simba" target="_blank" class="action-btn bg-gray"><i class="fa-brands fa-github"></i> GitHub</a>
219
 
220
  </div>
221
+
222
+ <div class="action-buttons">
223
+ <a href="https://aclanthology.org/2025.emnlp-main.559/" target="_blank" class="action-btn btn-red">
224
+ <i class="fa-regular fa-file-pdf"></i> Read Paper
225
+ </a>
226
+ <a href="https://africa.dlnlp.ai/simba/" target="_blank" class="action-btn btn-indigo">
227
+ <i class="fa-solid fa-globe"></i> Official Website
228
+ </a>
229
+ <a href="https://huggingface.co/collections/UBC-NLP/simba-speech-series" target="_blank" class="action-btn btn-orange">
230
+ <i class="fa-solid fa-robot"></i> Simba Models
231
+ </a>
232
+ <a href="https://github.com/UBC-NLP/simba" target="_blank" class="action-btn btn-dark">
233
+ <i class="fa-brands fa-github"></i> GitHub
234
+ </a>
235
+ </div>
236
+
237
  </div>
238
  </div>
239