QuarksLab / index.html
TwoQuarks's picture
Update index.html
8cdecb1 verified
Raw
History Blame Contribute Delete
1.1 kB
<!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>