[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 03:52:43 +01:00
parent 287a9f2b6a
commit 6952d5cfe1
37 changed files with 6216 additions and 0 deletions

14
src/css/App.css Normal file
View File

@@ -0,0 +1,14 @@
body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
}
body.light {
background: white;
color: black;
}
body.dark {
background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-secondary));
color: white;
}