SondosMB commited on
Commit
b1b0330
Β·
verified Β·
1 Parent(s): 870c9f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -308,7 +308,7 @@ color: blue;
308
  }
309
 
310
  /* Footer */
311
- footer {
312
  background: linear-gradient(135deg, #6a1b9a, #8e44ad);
313
  color: #ffffff;
314
  text-align: center;
@@ -318,12 +318,12 @@ footer {
318
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
319
  }
320
 
321
- footer h2 {
322
  font-size: 1.5em;
323
  margin-bottom: 15px;
324
  }
325
 
326
- footer p {
327
  font-size: 0.8em;
328
  line-height: 1.6;
329
  margin-bottom: 20px;
@@ -408,12 +408,12 @@ with gr.Blocks(css=css_tech_theme) as demo:
408
  """)
409
  # # Pre-Tabs Section
410
  gr.Markdown("""
411
- # <section class="pre-tabs" style="padding: 40px 20px; background: linear-gradient(135deg, #ffffff, #f9fafb); border: 3px solid #6a1b9a; border-radius: 12px; box-shadow: 0 4px 10px rgba(106, 27, 154, 0.2); margin-bottom: 20px;">
412
- <h2 style="color: #6a1b9a; text-align: center; font-size: 3em;">Why Participate?</h2>
413
- <p style="font-size: 1.7em; color: #333; text-align: center;">
414
  The Mobile-MMLU Benchmark Competition offers a unique opportunity to evaluate your LLMs in real-world mobile scenarios.
415
- Join the challenge to drive innovation, showcase your expertise, and shape the future of mobile AI.</p>
416
- # </section>
417
  """)
418
 
419
  # Tabs Section
@@ -548,7 +548,7 @@ with gr.Blocks(css=css_tech_theme) as demo:
548
 
549
  # Footer Section
550
  gr.Markdown("""
551
- <footer>
552
  <h2>Stay Connected</h2>
553
  <p>
554
  Follow us on social media or contact us for any queries. Let's shape the future of AI together!
@@ -557,7 +557,7 @@ with gr.Blocks(css=css_tech_theme) as demo:
557
  <a href="https://website.com" target="_blank" class="social-link">🌐 Website</a>
558
  <a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link">πŸ™ GitHub</a>
559
  </div>
560
- </footer>
561
  """)
562
 
563
  demo.launch()
 
308
  }
309
 
310
  /* Footer */
311
+ .footer {
312
  background: linear-gradient(135deg, #6a1b9a, #8e44ad);
313
  color: #ffffff;
314
  text-align: center;
 
318
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
319
  }
320
 
321
+ .footer h2 {
322
  font-size: 1.5em;
323
  margin-bottom: 15px;
324
  }
325
 
326
+ .footer p {
327
  font-size: 0.8em;
328
  line-height: 1.6;
329
  margin-bottom: 20px;
 
408
  """)
409
  # # Pre-Tabs Section
410
  gr.Markdown("""
411
+ <section class="pre-tabs">
412
+ <h2>Why Participate?</h2>
413
+ <h3>
414
  The Mobile-MMLU Benchmark Competition offers a unique opportunity to evaluate your LLMs in real-world mobile scenarios.
415
+ Join the challenge to drive innovation, showcase your expertise, and shape the future of mobile AI.</h3>
416
+ </section>
417
  """)
418
 
419
  # Tabs Section
 
548
 
549
  # Footer Section
550
  gr.Markdown("""
551
+ <section class="footer">
552
  <h2>Stay Connected</h2>
553
  <p>
554
  Follow us on social media or contact us for any queries. Let's shape the future of AI together!
 
557
  <a href="https://website.com" target="_blank" class="social-link">🌐 Website</a>
558
  <a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link">πŸ™ GitHub</a>
559
  </div>
560
+ </section>
561
  """)
562
 
563
  demo.launch()