From 45a842b6fe17f15e94810e2679e8aa5f8f15c505 Mon Sep 17 00:00:00 2001 From: julius Date: Thu, 18 Dec 2025 16:47:47 +0100 Subject: [PATCH] move frontend stuff to its own directory --- eslint.config.js => frontend/eslint.config.js | 0 index.html => frontend/index.html | 0 package.json => frontend/package.json | 0 {src => frontend/src}/App.css | 0 {src => frontend/src}/App.tsx | 0 {src => frontend/src}/Avatar.tsx | 0 {src => frontend/src}/CUTT.tsx | 0 {src => frontend/src}/Calendar.tsx | 0 {src => frontend/src}/Footer.tsx | 0 {src => frontend/src}/Form.tsx | 0 {src => frontend/src}/Header.tsx | 0 {src => frontend/src}/Icons.tsx | 0 {src => frontend/src}/Login.tsx | 0 {src => frontend/src}/MVPChart.tsx | 0 {src => frontend/src}/Network.tsx | 0 {src => frontend/src}/NetworkTheme.ts | 0 {src => frontend/src}/RaceChart.tsx | 0 {src => frontend/src}/Rankings.tsx | 0 {src => frontend/src}/Session.tsx | 0 {src => frontend/src}/SetPassword.tsx | 0 {src => frontend/src}/TabController.tsx | 0 {src => frontend/src}/TeamPanel.tsx | 0 {src => frontend/src}/ThemeProvider.tsx | 0 {src => frontend/src}/api.ts | 0 {src => frontend/src}/index.css | 0 {src => frontend/src}/main.css | 0 {src => frontend/src}/main.tsx | 0 {src => frontend/src}/themes.ts | 0 {src => frontend/src}/types.ts | 0 {src => frontend/src}/vite-env.d.ts | 0 tsconfig.app.json => frontend/tsconfig.app.json | 0 tsconfig.json => frontend/tsconfig.json | 0 tsconfig.node.json => frontend/tsconfig.node.json | 0 vite.config.ts => frontend/vite.config.ts | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename eslint.config.js => frontend/eslint.config.js (100%) rename index.html => frontend/index.html (100%) rename package.json => frontend/package.json (100%) rename {src => frontend/src}/App.css (100%) rename {src => frontend/src}/App.tsx (100%) rename {src => frontend/src}/Avatar.tsx (100%) rename {src => frontend/src}/CUTT.tsx (100%) rename {src => frontend/src}/Calendar.tsx (100%) rename {src => frontend/src}/Footer.tsx (100%) rename {src => frontend/src}/Form.tsx (100%) rename {src => frontend/src}/Header.tsx (100%) rename {src => frontend/src}/Icons.tsx (100%) rename {src => frontend/src}/Login.tsx (100%) rename {src => frontend/src}/MVPChart.tsx (100%) rename {src => frontend/src}/Network.tsx (100%) rename {src => frontend/src}/NetworkTheme.ts (100%) rename {src => frontend/src}/RaceChart.tsx (100%) rename {src => frontend/src}/Rankings.tsx (100%) rename {src => frontend/src}/Session.tsx (100%) rename {src => frontend/src}/SetPassword.tsx (100%) rename {src => frontend/src}/TabController.tsx (100%) rename {src => frontend/src}/TeamPanel.tsx (100%) rename {src => frontend/src}/ThemeProvider.tsx (100%) rename {src => frontend/src}/api.ts (100%) rename {src => frontend/src}/index.css (100%) rename {src => frontend/src}/main.css (100%) rename {src => frontend/src}/main.tsx (100%) rename {src => frontend/src}/themes.ts (100%) rename {src => frontend/src}/types.ts (100%) rename {src => frontend/src}/vite-env.d.ts (100%) rename tsconfig.app.json => frontend/tsconfig.app.json (100%) rename tsconfig.json => frontend/tsconfig.json (100%) rename tsconfig.node.json => frontend/tsconfig.node.json (100%) rename vite.config.ts => frontend/vite.config.ts (100%) diff --git a/eslint.config.js b/frontend/eslint.config.js similarity index 100% rename from eslint.config.js rename to frontend/eslint.config.js diff --git a/index.html b/frontend/index.html similarity index 100% rename from index.html rename to frontend/index.html diff --git a/package.json b/frontend/package.json similarity index 100% rename from package.json rename to frontend/package.json diff --git a/src/App.css b/frontend/src/App.css similarity index 100% rename from src/App.css rename to frontend/src/App.css diff --git a/src/App.tsx b/frontend/src/App.tsx similarity index 100% rename from src/App.tsx rename to frontend/src/App.tsx diff --git a/src/Avatar.tsx b/frontend/src/Avatar.tsx similarity index 100% rename from src/Avatar.tsx rename to frontend/src/Avatar.tsx diff --git a/src/CUTT.tsx b/frontend/src/CUTT.tsx similarity index 100% rename from src/CUTT.tsx rename to frontend/src/CUTT.tsx diff --git a/src/Calendar.tsx b/frontend/src/Calendar.tsx similarity index 100% rename from src/Calendar.tsx rename to frontend/src/Calendar.tsx diff --git a/src/Footer.tsx b/frontend/src/Footer.tsx similarity index 100% rename from src/Footer.tsx rename to frontend/src/Footer.tsx diff --git a/src/Form.tsx b/frontend/src/Form.tsx similarity index 100% rename from src/Form.tsx rename to frontend/src/Form.tsx diff --git a/src/Header.tsx b/frontend/src/Header.tsx similarity index 100% rename from src/Header.tsx rename to frontend/src/Header.tsx diff --git a/src/Icons.tsx b/frontend/src/Icons.tsx similarity index 100% rename from src/Icons.tsx rename to frontend/src/Icons.tsx diff --git a/src/Login.tsx b/frontend/src/Login.tsx similarity index 100% rename from src/Login.tsx rename to frontend/src/Login.tsx diff --git a/src/MVPChart.tsx b/frontend/src/MVPChart.tsx similarity index 100% rename from src/MVPChart.tsx rename to frontend/src/MVPChart.tsx diff --git a/src/Network.tsx b/frontend/src/Network.tsx similarity index 100% rename from src/Network.tsx rename to frontend/src/Network.tsx diff --git a/src/NetworkTheme.ts b/frontend/src/NetworkTheme.ts similarity index 100% rename from src/NetworkTheme.ts rename to frontend/src/NetworkTheme.ts diff --git a/src/RaceChart.tsx b/frontend/src/RaceChart.tsx similarity index 100% rename from src/RaceChart.tsx rename to frontend/src/RaceChart.tsx diff --git a/src/Rankings.tsx b/frontend/src/Rankings.tsx similarity index 100% rename from src/Rankings.tsx rename to frontend/src/Rankings.tsx diff --git a/src/Session.tsx b/frontend/src/Session.tsx similarity index 100% rename from src/Session.tsx rename to frontend/src/Session.tsx diff --git a/src/SetPassword.tsx b/frontend/src/SetPassword.tsx similarity index 100% rename from src/SetPassword.tsx rename to frontend/src/SetPassword.tsx diff --git a/src/TabController.tsx b/frontend/src/TabController.tsx similarity index 100% rename from src/TabController.tsx rename to frontend/src/TabController.tsx diff --git a/src/TeamPanel.tsx b/frontend/src/TeamPanel.tsx similarity index 100% rename from src/TeamPanel.tsx rename to frontend/src/TeamPanel.tsx diff --git a/src/ThemeProvider.tsx b/frontend/src/ThemeProvider.tsx similarity index 100% rename from src/ThemeProvider.tsx rename to frontend/src/ThemeProvider.tsx diff --git a/src/api.ts b/frontend/src/api.ts similarity index 100% rename from src/api.ts rename to frontend/src/api.ts diff --git a/src/index.css b/frontend/src/index.css similarity index 100% rename from src/index.css rename to frontend/src/index.css diff --git a/src/main.css b/frontend/src/main.css similarity index 100% rename from src/main.css rename to frontend/src/main.css diff --git a/src/main.tsx b/frontend/src/main.tsx similarity index 100% rename from src/main.tsx rename to frontend/src/main.tsx diff --git a/src/themes.ts b/frontend/src/themes.ts similarity index 100% rename from src/themes.ts rename to frontend/src/themes.ts diff --git a/src/types.ts b/frontend/src/types.ts similarity index 100% rename from src/types.ts rename to frontend/src/types.ts diff --git a/src/vite-env.d.ts b/frontend/src/vite-env.d.ts similarity index 100% rename from src/vite-env.d.ts rename to frontend/src/vite-env.d.ts diff --git a/tsconfig.app.json b/frontend/tsconfig.app.json similarity index 100% rename from tsconfig.app.json rename to frontend/tsconfig.app.json diff --git a/tsconfig.json b/frontend/tsconfig.json similarity index 100% rename from tsconfig.json rename to frontend/tsconfig.json diff --git a/tsconfig.node.json b/frontend/tsconfig.node.json similarity index 100% rename from tsconfig.node.json rename to frontend/tsconfig.node.json diff --git a/vite.config.ts b/frontend/vite.config.ts similarity index 100% rename from vite.config.ts rename to frontend/vite.config.ts