initiate drf app

This commit is contained in:
2025-05-15 18:26:23 +03:00
commit 8e3dfd89b1
86 changed files with 9340 additions and 0 deletions

27
frontend/app/globals.css Normal file
View File

@@ -0,0 +1,27 @@
@import 'tailwindcss';
:root {
--background: #eeebeb;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-orange: #ff613a;
}
@media (prefers-color-scheme: light) {
:root {
--background: #eeebeb;
--foreground: #171717;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}