forge/arma/ui/atm.html
Jacob Schmidt d178e39164 Refactor client UI stores and normalize docs formatting
- Rework org and store UI state modules (rename/move store/getter files, add runtime and bridge wiring)
- Update store UI components and page structure (navbar/cart split, new StoreView flow)
- Apply broad markdown/YAML/HTML/CSS/JS formatting cleanup across docs, templates, and workflows
2026-03-10 19:13:30 -05:00

25 lines
593 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ATM - Global Financial Network</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
background: #f1f5f9;
}
.container {
max-width: 800px;
justify-content: center;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="atm.js"></script>
</body>
</html>