feat: add projekt view

This commit is contained in:
2025-11-12 20:23:57 +01:00
parent cfd73d17b7
commit cf7644b330
3 changed files with 65 additions and 27 deletions

View File

@@ -10,4 +10,9 @@ public class IndexController {
public String home(Model model) {
return "index";
}
@GetMapping("/projekt")
public String projekt(Model model) {
return "projekt";
}
}

View File

@@ -9,16 +9,8 @@
<h1 class="text-2xl">Projektverwaltung</h1>
<h2 class="text-4xl">Laufende Projekte</h2>
<div class="flex flex-wrap gap-10">
<section
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-linear-to-br from-blue-100 from-50% to-yellow-100 p-5 transition-all select-none hover:from-10% active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
<p class="text-gray-500">
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -26,8 +18,19 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
href="/projekt"
>
<h3 class="text-lg">GoLive ERP</h3>
<p class="text-gray-500">
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -35,8 +38,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -44,8 +48,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -53,8 +58,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -62,8 +68,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -71,8 +78,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -80,8 +88,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -89,8 +98,9 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
<section
</a>
<a
href="/projekt"
class="flex max-w-64 cursor-pointer flex-col gap-2 rounded-2xl bg-blue-100 p-5 transition-all select-none hover:bg-blue-200 active:bg-blue-300"
>
<h3 class="text-lg">GoLive ERP</h3>
@@ -98,7 +108,7 @@
Wir möchten unsere aktuellen Insellösungen durch ein ERP ablösen, das
alles Komponenten der Wertschöpfungskette bündelt
</p>
</section>
</a>
</div>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
<title>Projektverwaltung</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body class="p-20 text-gray-700">
<main class="">
<h2 class="text-4xl">ERP Next</h2>
<div class="flex flex-col gap-2">
<p class="rounded-sm border border-gray-400 p-2">Anforderungsanalyse</p>
<p class="ml-6 rounded-sm border border-gray-400 p-2">Test 1</p>
<p class="ml-10 rounded-sm border border-gray-400 p-2">Test 1.1</p>
<p class="ml-6 rounded-sm border border-gray-400 p-2">Test 2</p>
<p class="ml-6 rounded-sm border border-gray-400 p-2">Test 3</p>
<p class="rounded-sm border border-gray-400 p-2">Evaluation</p>
<p class="rounded-sm border border-gray-400 p-2">Vertragsgespräche</p>
<p class="rounded-sm border border-gray-400 p-2">LiveGang</p>
</div>
</main>
</body>
</html>