Updated page.tsx

Updated home page, still using preprocessed_data.xlsx because using updated_datav2.xlsx basically crashes the frontend rn lol :p
This commit is contained in:
Vadella, Anna
2026-04-01 13:02:29 -04:00
parent 90a551c048
commit d4777b5e72
5 changed files with 135 additions and 38 deletions

View File

@@ -2,15 +2,16 @@
:root {
--background: #0A1F44;
--highlight: #62b6cba6;
--text-dark: #000000;
--text-light: #f9fafb;
--box: #D9D9D9;
--button: #A71D31;
--button-dark: #850e25;
--box: #DED6D6;
--button: #92140C;
}
@theme inline {
--color-background: var(--background);
--color-highlight: var(--highlight);
--color-text-dark: var(--text-dark);
--color-text-light: var(--text-light);
--color-box: var(--box);
@@ -25,3 +26,11 @@ body {
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}