Update Readme

This commit is contained in:
root
2025-09-23 13:33:56 +00:00
parent 282ac2d028
commit 90d359c14a
23 changed files with 936 additions and 191 deletions
+10 -7
View File
@@ -1,13 +1,16 @@
import React from "react";
import Stacks from "./Stacks";
import Stacks from "./Stacks.jsx";
function App() {
export default function App() {
return (
<div className="min-h-screen bg-gray-100 p-6">
<h1 className="text-2xl font-bold mb-4">StackPulse</h1>
<Stacks />
<div className="min-h-screen bg-gray-900 text-white">
<header className="p-6 bg-gray-800 shadow-md">
<h1 className="text-2xl font-bold text-white">StackPulse</h1>
<p className="text-gray-400 mt-1">Verwalte deine Docker Stacks</p>
</header>
<main className="p-6">
<Stacks />
</main>
</div>
);
}
export default App;