Erster Wurf, landing page

This commit is contained in:
2026-03-31 09:47:15 +02:00
parent b19e30679e
commit 26e57cb95e
5 changed files with 637 additions and 19 deletions

View File

@@ -1,17 +1,33 @@
---
import '../styles/global.css'
---
---
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Engineering | Under Construction</title>
</head>
<body class="bg-gray-900 text-gray-200 h-screen flex flex-col items-center justify-center p-6 text-center font-mono">
<div class="max-w-3xl">
<h1 class="text-4xl md:text-6xl font-bold mb-6 text-blue-400">
Error 404: Motivation Not Found
</h1>
<p class="text-lg md:text-2xl text-gray-400 mb-8 leading-relaxed">
Das theoretische Konzept für diese Website ist absolut fehlerfrei und auf dem Papier bereits ein Meisterwerk. <br />
<span class="text-gray-500 text-sm mt-4 block">
// Status: Warte auf die praktische Umsetzung (voraussichtliche Dauer: NaN)
</span>
</p>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
</html>
<div class="flex justify-center space-x-2 mt-8">
<div class="w-3 h-3 bg-blue-500 rounded-full animate-bounce" style="animation-delay: 0s"></div>
<div class="w-3 h-3 bg-blue-500 rounded-full animate-bounce" style="animation-delay: 0.2s"></div>
<div class="w-3 h-3 bg-blue-500 rounded-full animate-bounce" style="animation-delay: 0.4s"></div>
</div>
</div>
</body>
</html>