ritterkraft commited on
Commit
a5fd30f
·
verified ·
1 Parent(s): 6ce554b

Add live demo CTA and preview

Browse files
Files changed (2) hide show
  1. index.html +9 -0
  2. styles.css +41 -0
index.html CHANGED
@@ -29,6 +29,7 @@
29
  <div class="actions">
30
  <a class="button primary" href="https://thelabsource.com/projects/adi-models.php" target="_blank" rel="noreferrer">theLAB source</a>
31
  <a class="button" href="https://huggingface.co/AdvancedDataIntelligence" target="_blank" rel="noreferrer">HF models</a>
 
32
  <a class="button" href="#console">Run local</a>
33
  </div>
34
  </div>
@@ -80,6 +81,14 @@
80
  <a id="model-link" class="button primary" href="https://huggingface.co/AdvancedDataIntelligence/adi-qwen3.5-4b-glm5.2-general-GGUF" target="_blank" rel="noreferrer">Open model card</a>
81
  </article>
82
  </div>
 
 
 
 
 
 
 
 
83
  </section>
84
 
85
  <section class="screen pipeline" aria-labelledby="pipeline-title">
 
29
  <div class="actions">
30
  <a class="button primary" href="https://thelabsource.com/projects/adi-models.php" target="_blank" rel="noreferrer">theLAB source</a>
31
  <a class="button" href="https://huggingface.co/AdvancedDataIntelligence" target="_blank" rel="noreferrer">HF models</a>
32
+ <a class="button" href="https://huggingface.co/spaces/AdvancedDataIntelligence/adi-qwen3.5-4b-glm5.2-general-demo" target="_blank" rel="noreferrer">Live demo</a>
33
  <a class="button" href="#console">Run local</a>
34
  </div>
35
  </div>
 
81
  <a id="model-link" class="button primary" href="https://huggingface.co/AdvancedDataIntelligence/adi-qwen3.5-4b-glm5.2-general-GGUF" target="_blank" rel="noreferrer">Open model card</a>
82
  </article>
83
  </div>
84
+
85
+ <a class="demo-strip" href="https://huggingface.co/spaces/AdvancedDataIntelligence/adi-qwen3.5-4b-glm5.2-general-demo" target="_blank" rel="noreferrer" aria-label="Launch the ADI Qwen3.5 4B live demo">
86
+ <img src="https://serve.thelabsource.com/u/4Kb3iS.gif" alt="ADI Qwen3.5 4B live demo preview" />
87
+ <span>
88
+ <b>Live browser demo</b>
89
+ <em>Try adi-qwen3.5-4b-glm5.2-general in Hugging Face Spaces.</em>
90
+ </span>
91
+ </a>
92
  </section>
93
 
94
  <section class="screen pipeline" aria-labelledby="pipeline-title">
styles.css CHANGED
@@ -367,6 +367,46 @@ pre {
367
  color: var(--muted);
368
  }
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  .command-wrap {
371
  display: grid;
372
  grid-template-columns: minmax(0, 1fr) auto;
@@ -469,6 +509,7 @@ code {
469
  .hero-panel { position: relative; right: auto; bottom: auto; width: 100%; margin-bottom: 80px; }
470
  .hero-copy { padding-bottom: 28px; }
471
  .model-stage, .pipeline { grid-template-columns: 1fr; }
 
472
  .model-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
473
  .pipeline-art { min-height: 520px; }
474
  }
 
367
  color: var(--muted);
368
  }
369
 
370
+ .demo-strip {
371
+ display: grid;
372
+ grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 1fr);
373
+ gap: 18px;
374
+ align-items: center;
375
+ margin-top: 8px;
376
+ padding: 14px;
377
+ border: 1px solid var(--line);
378
+ border-radius: 22px;
379
+ background: rgba(8, 15, 22, 0.72);
380
+ box-shadow: 0 22px 90px rgba(0,0,0,0.32);
381
+ backdrop-filter: blur(16px);
382
+ }
383
+
384
+ .demo-strip img {
385
+ width: 100%;
386
+ aspect-ratio: 16 / 5.2;
387
+ object-fit: cover;
388
+ border: 1px solid var(--line);
389
+ border-radius: 16px;
390
+ }
391
+
392
+ .demo-strip span {
393
+ display: grid;
394
+ gap: 8px;
395
+ }
396
+
397
+ .demo-strip b {
398
+ font-size: clamp(28px, 4vw, 54px);
399
+ line-height: 0.95;
400
+ font-family: var(--display);
401
+ font-weight: 400;
402
+ }
403
+
404
+ .demo-strip em {
405
+ max-width: 54ch;
406
+ color: var(--muted);
407
+ font-style: normal;
408
+ }
409
+
410
  .command-wrap {
411
  display: grid;
412
  grid-template-columns: minmax(0, 1fr) auto;
 
509
  .hero-panel { position: relative; right: auto; bottom: auto; width: 100%; margin-bottom: 80px; }
510
  .hero-copy { padding-bottom: 28px; }
511
  .model-stage, .pipeline { grid-template-columns: 1fr; }
512
+ .demo-strip { grid-template-columns: 1fr; }
513
  .model-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
514
  .pipeline-art { min-height: 520px; }
515
  }