Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.68.0",
"react-router-dom": "^7.10.1"
},
"devDependencies": {
Expand Down
99 changes: 79 additions & 20 deletions client/src/App.css
Original file line number Diff line number Diff line change
@@ -1,31 +1,90 @@

html, body, #root {
height: 100%;
width: 100%;
overflow-x: hidden;
}

* { box-sizing: border-box; }
img { max-width: 100%; display: block; }

/* Theme tokens (Light + Dark) */

:root {
--primary-action-color: #4A7A7B;
--background-color: #F5F5DC;
--secondary-background-color: #8E6161;
--text-icons-color: #34231b;
--accents-alerts-color: #B30000;
--radius: 18px;
--shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
--shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.20);

--primary: #7c5cff;
--primary2: #29d6c8;
--danger: #ff4d6d;
}

#root {
min-height: 100vh;
width: 100%;
margin: 0 auto;
max-width: 1280px;
}
/* Light */
:root[data-theme="light"] {
--bg: #f7f4ea;
--bg2: #f1ecdd;

--surface: rgba(255, 255, 255, 0.86);
--surface2: rgba(255, 255, 255, 0.72);

--border: rgba(17, 24, 39, 0.12);

--text: rgba(17, 24, 39, 0.92);
--muted: rgba(17, 24, 39, 0.62);

--inputBg: rgba(255, 255, 255, 0.95);
--inputBorder: rgba(17, 24, 39, 0.14);

--pillBg: rgba(124, 92, 255, 0.10);
--pillBorder: rgba(124, 92, 255, 0.18);
}

/* Dark */
:root[data-theme="dark"] {
--bg: #0b1020;
--bg2: #0f1730;

--surface: rgba(255, 255, 255, 0.06);
--surface2: rgba(255, 255, 255, 0.09);

--border: rgba(255, 255, 255, 0.12);

--text: rgba(255, 255, 255, 0.92);
--muted: rgba(255, 255, 255, 0.68);

--inputBg: rgba(0, 0, 0, 0.22);
--inputBorder: rgba(255, 255, 255, 0.16);

--pillBg: rgba(124, 92, 255, 0.16);
--pillBorder: rgba(124, 92, 255, 0.24);
}

body {
display: flex;
min-width: 320px;
min-height: 100vh;
margin: 0;
padding: 0;
background: var(--background-color);
justify-content: center;
color: var(--text);
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;


background:
radial-gradient(900px 500px at 10% -10%, rgba(124, 92, 255, 0.22), transparent 60%),
radial-gradient(900px 500px at 90% 10%, rgba(41, 214, 200, 0.18), transparent 55%),
linear-gradient(180deg, var(--bg), var(--bg2));
}

.app-container {
.app-shell {
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
}
}

.app-main {
flex: 1;
display: flex;
justify-content: center;
}

.app-inner {
width: min(1100px, 100%);
padding: 26px 16px 40px;
}
Loading