tractatus/public/test-pressure-chart.html
TheFlow 403a54decf feat: Add Kōrero HTML page, remove umami analytics
- Create korero-counter-arguments.html (STO-INN-0004) with styled critique cards
- Remove umami-tracker.js and all references from HTML files
- Update privacy.html Section 6 to reflect "No Analytics" policy

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 11:43:29 +13:00

31 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test - Pressure Chart</title>
<link rel="stylesheet" href="/css/tailwind.css?v=1761163813">
<!-- Auto-reload on service worker update -->
</head>
<body class="p-10 bg-gray-50">
<h1 class="text-3xl font-bold mb-8">Pressure Chart Test Page</h1>
<div class="max-w-2xl">
<div class="bg-gray-50 rounded-xl shadow-lg p-6 border border-gray-200">
<div id="pressure-chart"></div>
</div>
</div>
<div class="mt-8 p-4 bg-blue-50 border border-blue-200 rounded max-w-2xl">
<h2 class="font-bold mb-2">Debug Info:</h2>
<p class="text-sm">If both buttons are visible here, the issue is in the architecture.html page layout.</p>
<p class="text-sm">If buttons are still hidden, the issue is in the JavaScript component itself.</p>
</div>
<script src="/js/components/pressure-chart.js?v=1761163813"></script>
<script src="/js/components/activity-timeline.js?v=1761163813"></script>
</body>
</html>