diff --git a/public/architecture.html b/public/architecture.html index ad79de5b..9c39ccfc 100644 --- a/public/architecture.html +++ b/public/architecture.html @@ -501,6 +501,10 @@ + + + + diff --git a/public/css/tractatus-theme.css b/public/css/tractatus-theme.css index 56f37d69..535f12bd 100644 --- a/public/css/tractatus-theme.css +++ b/public/css/tractatus-theme.css @@ -618,7 +618,7 @@ h3 { letter-spacing: -0.015em; } /* Gradient Backgrounds */ .bg-gradient-tractatus { - background: linear-gradient(135deg, #64ffda 0%, #448aff 50%, #0ea5e9 100%); + background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #7e22ce 100%); } .bg-gradient-service-boundary { diff --git a/public/index.html b/public/index.html index 3eb50b9b..fa366fa7 100644 --- a/public/index.html +++ b/public/index.html @@ -51,7 +51,7 @@
-
+
@@ -98,7 +98,7 @@
-
+

We recognize this is one small step in addressing AI safety challenges. Explore the framework through the lens that resonates with your work.

diff --git a/public/js/components/interactive-diagram.js b/public/js/components/interactive-diagram.js index b5fb9a8c..f59c54bf 100644 --- a/public/js/components/interactive-diagram.js +++ b/public/js/components/interactive-diagram.js @@ -117,7 +117,7 @@ class InteractiveDiagram { } const nodes = svg.querySelectorAll('.service-node'); - console.log(\`[InteractiveDiagram] Found \${nodes.length} service nodes\`); + console.log(`[InteractiveDiagram] Found ${nodes.length} service nodes`); nodes.forEach(node => { const serviceId = node.getAttribute('data-service'); @@ -143,12 +143,12 @@ class InteractiveDiagram { const svg = document.getElementById('interactive-arch-diagram'); if (!svg) return; - const connectionLine = svg.querySelector(\`#conn-\${serviceId}\`); + const connectionLine = svg.querySelector(`#conn-${serviceId}`); if (connectionLine) { connectionLine.classList.add('active'); } - const node = svg.querySelector(\`#node-\${serviceId}\`); + const node = svg.querySelector(`#node-${serviceId}`); if (node) { node.classList.add('hover'); } @@ -160,12 +160,12 @@ class InteractiveDiagram { if (this.activeService === serviceId) return; - const connectionLine = svg.querySelector(\`#conn-\${serviceId}\`); + const connectionLine = svg.querySelector(`#conn-${serviceId}`); if (connectionLine) { connectionLine.classList.remove('active'); } - const node = svg.querySelector(\`#node-\${serviceId}\`); + const node = svg.querySelector(`#node-${serviceId}`); if (node) { node.classList.remove('hover'); } @@ -185,12 +185,12 @@ class InteractiveDiagram { svg.querySelectorAll('.service-node').forEach(n => n.classList.remove('active')); svg.querySelectorAll('.connection-line').forEach(l => l.classList.remove('active')); - const node = svg.querySelector(\`#node-\${serviceId}\`); + const node = svg.querySelector(`#node-${serviceId}`); if (node) { node.classList.add('active'); } - const connectionLine = svg.querySelector(\`#conn-\${serviceId}\`); + const connectionLine = svg.querySelector(`#conn-${serviceId}`); if (connectionLine) { connectionLine.classList.add('active'); } @@ -221,15 +221,15 @@ class InteractiveDiagram { panel.style.borderColor = service.color; } - const html = \` + const html = `
-
- \${service.icon} +
+ ${service.icon}
-

\${service.name}

- \${service.shortName} +

${service.name}

+ ${service.shortName}
-

\${service.description}

+

${service.description}

Key Features

    - \${service.details.map(detail => \` + ${service.details.map(detail => `
  • - + - \${detail} + ${detail}
  • - \`).join('')} + `).join('')}
-
- Early Promise: - \${service.promise} +
+ Early Promise: + ${service.promise}
- \`; + `; panel.innerHTML = html; @@ -267,7 +267,7 @@ class InteractiveDiagram { const iconBox = panel.querySelector('.service-icon-box'); if (iconBox) { const color = iconBox.getAttribute('data-color'); - iconBox.style.background = \`linear-gradient(135deg, \${color} 0%, \${color}dd 100%)\`; + iconBox.style.background = `linear-gradient(135deg, ${color} 0%, ${color}dd 100%)`; } // Style all check icons