feat: Migrate landing page to Vue 3 + TypeScript
- Replace static HTML with Vue 3 SPA (Vite + TypeScript) - Add GalaxyCanvas component (interactive particle animation) - Component-based sections (HeroSection, SectionBlock, FooterView) - Add nginx.conf with SPA routing + security headers - Update compose.yaml to mount nginx config - Build output in html/ directory
This commit is contained in:
+10
-444
@@ -1,447 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Bao — Architekt</title>
|
||||
<style>
|
||||
*, *::before, *::after {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg: #0f0f13;
|
||||
--surface: #1a1a24;
|
||||
--surface-hover: #22222e;
|
||||
--border: #2a2a3a;
|
||||
--text: #e4e4ed;
|
||||
--text-muted: #8888a0;
|
||||
--accent: #6c5ce7;
|
||||
--accent-glow: rgba(108, 92, 231, 0.15);
|
||||
--radius: 12px;
|
||||
--transition: 200ms ease;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.6;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: radial-gradient(ellipse at 30% 20%, rgba(108, 92, 231, 0.04) 0%, transparent 60%),
|
||||
radial-gradient(ellipse at 70% 80%, rgba(0, 200, 255, 0.03) 0%, transparent 50%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
body::after {
|
||||
content: '';
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(var(--border) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--border) 1px, transparent 1px);
|
||||
background-size: 60px 60px;
|
||||
opacity: 0.15;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem 1.5rem;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.hero {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
padding: 5rem 0 4rem;
|
||||
}
|
||||
|
||||
.hero-avatar {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(135deg, var(--accent), #a29bfe);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 2.8rem;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
margin-bottom: 1.5rem;
|
||||
box-shadow: 0 0 40px var(--accent-glow);
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2.8rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.03em;
|
||||
background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
.hero .subtitle {
|
||||
font-size: 1.15rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 0.5rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.hero .tagline {
|
||||
margin-top: 1.2rem;
|
||||
max-width: 540px;
|
||||
color: var(--text-muted);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.status-bar {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
border-radius: 50%;
|
||||
background: #00d68f;
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 1; box-shadow: 0 0 6px #00d68f; }
|
||||
50% { opacity: 0.5; box-shadow: 0 0 10px #00d68f; }
|
||||
}
|
||||
|
||||
.status-label {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 1.5rem;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.section-header .line {
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
background: var(--border);
|
||||
}
|
||||
|
||||
.cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 1.5rem;
|
||||
transition: all var(--transition);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
background: var(--surface-hover);
|
||||
border-color: var(--accent);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.card .icon {
|
||||
font-size: 1.6rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
.card p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.card .meta {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 0.75rem;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.stack {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.stack-item {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 1.25rem 1.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 1rem;
|
||||
transition: all var(--transition);
|
||||
}
|
||||
|
||||
.stack-item:hover {
|
||||
background: var(--surface-hover);
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
.stack-item .left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.85rem;
|
||||
}
|
||||
|
||||
.stack-item .left .emoji {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
.stack-item .left .info h4 {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.stack-item .left .info span {
|
||||
font-size: 0.82rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.stack-item .badge {
|
||||
background: var(--accent-glow);
|
||||
color: var(--accent);
|
||||
border: 1px solid rgba(108, 92, 231, 0.15);
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 20px;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.stack-item .badge.green {
|
||||
background: rgba(0, 214, 143, 0.1);
|
||||
color: #00d68f;
|
||||
border-color: rgba(0, 214, 143, 0.15);
|
||||
}
|
||||
|
||||
.stack-item .badge.yellow {
|
||||
background: rgba(255, 214, 0, 0.1);
|
||||
color: #ffd600;
|
||||
border-color: rgba(255, 214, 0, 0.15);
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 3rem 0 1.5rem;
|
||||
border-top: 1px solid var(--border);
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
footer p {
|
||||
font-size: 0.82rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.hero { padding: 3rem 0 2rem; }
|
||||
.hero h1 { font-size: 2rem; }
|
||||
.cards { grid-template-columns: 1fr; }
|
||||
.stack-item { flex-direction: column; align-items: flex-start; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<section class="hero">
|
||||
<div class="hero-avatar">B</div>
|
||||
<h1>Bao</h1>
|
||||
<p class="subtitle">Architekt · Systemdenker · Entwickler</p>
|
||||
<p class="tagline">
|
||||
Fachinformatiker für Anwendungsentwicklung aus Regensburg-Burgweinting.
|
||||
Ich entwerfe Systeme, die halten.
|
||||
</p>
|
||||
<div class="status-bar">
|
||||
<span class="status-dot"></span>
|
||||
<span class="status-label">Online — Nexus Platform</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="section-header">
|
||||
<h2>Über mich</h2>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
|
||||
<div class="cards">
|
||||
<div class="card">
|
||||
<div class="icon">📍</div>
|
||||
<h3>Standort</h3>
|
||||
<p>Regensburg-Burgweinting, Deutschland</p>
|
||||
<p class="meta">Bayern · Zeitzone Europe/Berlin</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="icon">🎓</div>
|
||||
<h3>Werdegang</h3>
|
||||
<p>Fachinformatiker für Anwendungsentwicklung — staatlich geprüft, praxiserprobt.</p>
|
||||
<p class="meta">Abgeschlossene Ausbildung</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="icon">⚙️</div>
|
||||
<h3>Arbeitsweise</h3>
|
||||
<p>Clean Code, durchdachte Architektur, ehrliche Kommunikation. Keine Eierlegende-Wollmilchsäue.</p>
|
||||
<p class="meta">Qualität > Quantität</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section-header">
|
||||
<h2>Aktuelle Projekte</h2>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
|
||||
<div class="stack">
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">🚀</span>
|
||||
<div class="info">
|
||||
<h4>Nexus Platform</h4>
|
||||
<span>Multi-Agent-System · ASP.NET Core + Vue 3</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="badge green">Aktiv</span>
|
||||
</div>
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">🏗️</span>
|
||||
<div class="info">
|
||||
<h4>OpenClaw Gateway</h4>
|
||||
<span>Agent-Orchestrierung & Infrastruktur</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="badge green">Aktiv</span>
|
||||
</div>
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">🗄️</span>
|
||||
<div class="info">
|
||||
<h4>Noveria Cloud</h4>
|
||||
<span>Private Cloud & Self-Hosting</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="badge yellow">In Planung</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section-header">
|
||||
<h2>Tech-Stack</h2>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
|
||||
<div class="cards">
|
||||
<div class="card">
|
||||
<div class="icon">🔷</div>
|
||||
<h3>Backend</h3>
|
||||
<p>C# · ASP.NET Core 10 · Entity Framework · REST APIs · PostgreSQL</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="icon">🟢</div>
|
||||
<h3>Frontend</h3>
|
||||
<p>Vue 3 · TypeScript · Tailwind · Vite · Responsive Design</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="icon">🐳</div>
|
||||
<h3>DevOps</h3>
|
||||
<p>Docker · Compose · CI/CD · Linux · Self-Hosting · Gitea</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<div class="icon">🤖</div>
|
||||
<h3>KI & Agents</h3>
|
||||
<p>OpenAI · Claude · OpenClaw · Multi-Agent Orchestrierung</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section-header">
|
||||
<h2>Prinzipien</h2>
|
||||
<span class="line"></span>
|
||||
</div>
|
||||
|
||||
<div class="stack">
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">🎯</span>
|
||||
<div class="info">
|
||||
<h4>Lieber ehrlich als bequem</h4>
|
||||
<span>Keine Architektur um der Architektur willen. Jedes Bauteil muss seinen Wert beweisen.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">🔒</span>
|
||||
<div class="info">
|
||||
<h4>Sicherheit zuerst</h4>
|
||||
<span>Keine Secrets im Code. Keine offenen Türen. Produktionszugriff nur über Approval-Ketten.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="stack-item">
|
||||
<div class="left">
|
||||
<span class="emoji">📐</span>
|
||||
<div class="info">
|
||||
<h4>Durchdacht statt überladen</h4>
|
||||
<span>Der sauberste Code ist der, den du nicht brauchst. YAGNI lebt.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>Bao · Regensburg-Burgweinting · Deutschland</p>
|
||||
<p style="margin-top: 0.4rem; font-size: 0.75rem; opacity: 0.5;">
|
||||
Handcrafted with care · Keine KI-generierte Landing Page 😉
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Bao — Architekt</title>
|
||||
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user