tractatus/public/test-pressure-chart.html
TheFlow afcfc27502 feat: Complete Phase 2 Agent Lightning website integration
- Added Agent Lightning research section to researcher.html with Demo 2 results
- Created comprehensive /integrations/agent-lightning.html page
- Added Agent Lightning link in homepage hero section
- Updated Discord invite links (Tractatus + semantipy) across all pages
- Added feedback.js script to all key pages for live demonstration

Phase 2 of Master Plan complete: Discord setup → Website completion

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 14:38:20 +13:00

33 lines
1.2 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">
<!-- Privacy-Preserving Analytics (Umami - GDPR Compliant, No Cookies) -->
<script src="/js/components/umami-tracker.js"></script>
<!-- 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>