3546cd15ae
Rationale: 1. Deployed React + Vite stack to serve as the visual 'Right Hemisphere' reflection of the underlying KAIROS engine. 2. Implemented Kuramoto Differential equations natively in JavaScript to simulate the hardware topology mapping directly in the user's view. 3. Designed aesthetic glassmorphic gradients to reflect the high-dimensional 'ethereal' nature of phase coherence and mathematically strict token clock (dt) synchronization.
14 lines
361 B
HTML
14 lines
361 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>dashboard</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|