Initial MVP skeleton with auth, chat persistence, UI and text LLM integration

This commit is contained in:
2026-03-10 16:58:02 +00:00
commit 105b8b3db4
40 changed files with 1984 additions and 0 deletions

36
frontend/app/globals.css Normal file
View File

@@ -0,0 +1,36 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
:root {
--bg-color: #f5f6f8;
--panel-bg: #ffffff;
--text-main: #333333;
--text-muted: #888888;
--border-color: #e5e7eb;
--primary: #4a76a8;
--primary-hover: #3d628f;
--sidebar-w: 260px;
}
body, html {
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
height: 100vh;
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
a {
text-decoration: none;
color: inherit;
}
button {
cursor: pointer;
font-family: 'Inter', sans-serif;
}