chore: Install frontend dependencies and generate build assets.

This commit is contained in:
2026-03-02 19:21:28 -05:00
parent 3d1d968696
commit e541ab94a4
12 changed files with 1640 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
:root {
--bg-primary: #0f172a;
--bg-card: #1e293b;
--text-primary: #f1f5f9;
--text-secondary: #94a3b8;
--accent: #38bdf8;
--accent-hover: #7dd3fc;
--border: #334155;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#app {
width: 100%;
max-width: 640px;
padding: 1rem;
}