File size: 1,142 Bytes
5ae08f0 18aceba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Sovereign Foundry</title>
</head>
<body class="bg-black text-green-400 font-mono p-4">
<div class="max-w-md mx-auto">
<h1 class="text-xl font-bold mb-4 border-b border-green-800">SOVEREIGN FOUNDRY</h1>
<textarea id="canvas" class="w-full h-48 bg-gray-900 border border-green-900 p-2 text-sm" placeholder="Define your business idea here..."></textarea>
<button onclick="analyze()" class="w-full mt-2 bg-green-900 p-2 hover:bg-green-700">ANALYZE LOGIC</button>
<div id="output" class="mt-4 p-2 border border-green-900 min-h-[50px]"></div>
</div>
<script>
function analyze() {
const input = document.getElementById('canvas').value;
localStorage.setItem('idea', input);
document.getElementById('output').innerText = "Logic Collision Check: " + (input.length > 20 ? "PASS" : "INSUFFICIENT DATA");
}
</script>
</body>
</html>
|