initial commit

This commit is contained in:
2026-04-03 18:25:54 +01:00
commit 17e26fc87f
35 changed files with 4716 additions and 0 deletions

56
app/globals.css Normal file
View File

@@ -0,0 +1,56 @@
@import "tailwindcss";
@import "uploadthing/tw/v4";
@source "../node_modules/@uploadthing/react/dist";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
margin: 10px;
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
.nav-element {
color: black;
font-weight: bold;
background-color: #ffffff;
border-radius: 20px;
margin-right: 5px;
margin-left: 5px;
padding: 9px;
}
.nav-element:hover {
color: white;
background-color: #171717;
cursor: pointer;
}
.active-nav-element {
color: white;
font-weight: bold;
background-color: #171717;
border-radius: 20px;
margin-right: 5px;
margin-left: 5px;
padding: 9px;
}