pratikbhavsar commited on
Commit
6e72eb5
·
1 Parent(s): dc72700

added signup button

Browse files
Files changed (1) hide show
  1. data_loader.py +45 -3
data_loader.py CHANGED
@@ -383,7 +383,6 @@ DESCRIPTION_HTML = """
383
  </div>
384
  """
385
 
386
-
387
  HEADER_CONTENT = (
388
  COMMON
389
  + """
@@ -395,6 +394,7 @@ HEADER_CONTENT = (
395
  border-radius: 16px;
396
  margin-bottom: 0;
397
  transition: all 0.3s ease;
 
398
  }
399
 
400
  .header-content {
@@ -541,6 +541,37 @@ HEADER_CONTENT = (
541
  background: var(--accent-bg);
542
  }
543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
544
  @media (max-width: 768px) {
545
  .title-gradient, .subtitle-white {
546
  font-size: 3rem;
@@ -552,14 +583,24 @@ HEADER_CONTENT = (
552
  </style>
553
 
554
  <div class="header-wrapper">
 
 
 
 
 
 
 
 
 
 
555
  <div class="header-content">
556
  <div class="title-section">
557
 
558
  <div class="title-gradient">Agent Leaderboard</div>
559
 
560
  <div class="description">
561
- GenAI is evolving rapidly, with developers building exciting, high ROI agents.
562
- We built this leaderboard to answer one simple question:
563
  <div class="highlight-question">
564
  "How do top LLMs perform in real-world agentic scenarios?"
565
  </div>
@@ -602,6 +643,7 @@ HEADER_CONTENT = (
602
  """
603
  )
604
 
 
605
  CARDS = """ <div class="metrics-grid">
606
  <div class="metric-card">
607
  <div class="metric-number metric-blue">25</div>
 
383
  </div>
384
  """
385
 
 
386
  HEADER_CONTENT = (
387
  COMMON
388
  + """
 
394
  border-radius: 16px;
395
  margin-bottom: 0;
396
  transition: all 0.3s ease;
397
+ position: relative;
398
  }
399
 
400
  .header-content {
 
541
  background: var(--accent-bg);
542
  }
543
 
544
+ /* New Try Galileo button styles */
545
+ .try-galileo-button-container {
546
+ display: flex;
547
+ justify-content: center;
548
+ width: 100%;
549
+ margin-bottom: 2rem;
550
+ }
551
+
552
+ .try-galileo-button {
553
+ display: flex;
554
+ align-items: center;
555
+ gap: 0.5rem;
556
+ padding: 0.75rem 1.5rem;
557
+ background: var(--accent-bg);
558
+ border: 1px solid var(--accent-color);
559
+ border-radius: 100px;
560
+ color: var(--accent-color) !important;
561
+ text-decoration: none !important;
562
+ font-size: 0.95rem;
563
+ font-weight: 600;
564
+ transition: all 0.3s ease;
565
+ z-index: 10;
566
+ }
567
+
568
+ .try-galileo-button:hover {
569
+ transform: translateY(-2px);
570
+ box-shadow: 0 4px 12px rgba(var(--accent-color-rgb), 0.2);
571
+ background: var(--accent-color);
572
+ color: white !important;
573
+ }
574
+
575
  @media (max-width: 768px) {
576
  .title-gradient, .subtitle-white {
577
  font-size: 3rem;
 
583
  </style>
584
 
585
  <div class="header-wrapper">
586
+ <div class="try-galileo-button-container">
587
+ <a href="https://app.galileo.ai/sign-up" class="try-galileo-button" target="_blank" rel="noopener noreferrer">
588
+ <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
589
+ <path d="M17 8l4 4-4 4"/>
590
+ <path d="M3 12h18"/>
591
+ </svg>
592
+ Try Galileo for free
593
+ </a>
594
+ </div>
595
+
596
  <div class="header-content">
597
  <div class="title-section">
598
 
599
  <div class="title-gradient">Agent Leaderboard</div>
600
 
601
  <div class="description">
602
+ GenAI is evolving rapidly with developers building high ROI agents. <br>
603
+ We built this leaderboard to answer one simple question.
604
  <div class="highlight-question">
605
  "How do top LLMs perform in real-world agentic scenarios?"
606
  </div>
 
643
  """
644
  )
645
 
646
+
647
  CARDS = """ <div class="metrics-grid">
648
  <div class="metric-card">
649
  <div class="metric-number metric-blue">25</div>