first commit

This commit is contained in:
2025-11-10 00:14:49 +03:00
commit 6392533387
58 changed files with 7707 additions and 0 deletions

23
frontend/src/index.css Normal file
View File

@@ -0,0 +1,23 @@
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
:root {
font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.5;
font-weight: 400;
color: #1b1b1b;
background-color: #ffffff;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
background-color: #ffffff;
}
#root {
min-height: 100vh;
}