Initial commit

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Todd
2026-03-29 22:42:55 -04:00
commit 0d7b2b1aab
389 changed files with 280296 additions and 0 deletions

21
web/frontend/test.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<style>
body { background: white; padding: 50px; font-family: Arial; }
.box { border: 2px solid red; padding: 20px; background: yellow; }
</style>
</head>
<body>
<div class="box">
<h1>TEST PAGE - CAN YOU SEE THIS?</h1>
<p>If you see this, HTML/CSS works</p>
<button onclick="alert('JavaScript works!')">Click to test JS</button>
</div>
<script>
console.log('TEST: JavaScript is loading')
document.body.style.border = '10px solid green';
</script>
</body>
</html>