- 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
25 lines
593 B
HTML
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>
|