feat: implemented landing page

This commit is contained in:
2025-06-11 18:30:49 -03:00
parent 45ce3e5086
commit 31050675dd
14 changed files with 10511 additions and 0 deletions

14
web/src/styles/global.css Normal file
View File

@@ -0,0 +1,14 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: #FFF;
background: #ebf2f5;
}
body, input, button, textarea {
font: 600 18px Nunito, sans-serif;
}