File size: 1,097 Bytes
8cdecb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5270720
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>TwoQuarks • QuarksLab</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <!-- Quantum particle background -->
  <canvas id="quantumField"></canvas>
  
  <!-- Main application -->
  <div id="tqApp">
    <!-- Hero Section -->
    <div class="tq-hero">
      <div class="tq-hero__brand">TwoQuarks Research Lab</div>
      <p class="tq-hero__desc">
TwoQuarks defines model collapse as a failure of inference-time stability rather than capacity.
      </p>
      
      <!-- Navigation Pills -->
      <div class="tq-pills">
        <a href="#models" class="tq-pill tq-pill--active">Models</a>
        <a href="#gallery" class="tq-pill">Gallery</a>
        <a href="#research" class="tq-pill">Research</a>
        <a href="#api" class="tq-pill">API</a>
      </div>
    </div>
    
    <!-- Gradio interface will be injected here -->
    <div id="gradio-app"></div>
  </div>
  
  <script src="quantum-field.js"></script>
</body>
</html>