first commit to git

This commit is contained in:
Philipp
2026-06-09 20:31:08 +02:00
commit 310573e3ea
25 changed files with 3973 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ProxUI</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
+3172
View File
File diff suppressed because it is too large Load Diff
+26
View File
@@ -0,0 +1,26 @@
{
"name": "proxui-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@tanstack/react-query": "^5.0.0",
"@supabase/supabase-js": "^2.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0"
}
}
+23
View File
@@ -0,0 +1,23 @@
import React from "react";
import ReactDOM from "react-dom/client";
import "./styles.css";
function App() {
return (
<main className="app-shell">
<section className="panel">
<p className="eyebrow">ProxUI</p>
<h1>Proxmox Multi-Tenant Console</h1>
<p>
Grundgeruest fuer Login, Projekte, VM-Verwaltung und Web-Konsole.
</p>
</section>
</main>
);
}
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
+50
View File
@@ -0,0 +1,50 @@
:root {
color: #172026;
background: #f6f8fb;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
.app-shell {
min-height: 100vh;
display: grid;
place-items: center;
padding: 32px;
}
.panel {
width: min(720px, 100%);
border: 1px solid #d7dee8;
border-radius: 8px;
background: #ffffff;
padding: 32px;
}
.eyebrow {
margin: 0 0 12px;
color: #1f6f8b;
font-size: 14px;
font-weight: 700;
letter-spacing: 0;
text-transform: uppercase;
}
h1 {
margin: 0;
font-size: 32px;
line-height: 1.15;
}
p {
font-size: 16px;
line-height: 1.6;
}
+21
View File
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"],
"references": []
}
+1
View File
@@ -0,0 +1 @@
{"root":["./src/main.tsx"],"version":"5.9.3"}
+9
View File
@@ -0,0 +1,9 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
port: 5173
}
});