managarten/apps-archived/wisekeep/apps/landing/src/layouts/Layout.astro
Till-JS 61d181fbc2 chore: archive inactive projects to apps-archived/
Move inactive projects out of active workspace:
- bauntown (community website)
- maerchenzauber (AI story generation)
- memoro (voice memo app)
- news (news aggregation)
- nutriphi (nutrition tracking)
- reader (reading app)
- uload (URL shortener)
- wisekeep (AI wisdom extraction)

Update CLAUDE.md documentation:
- Add presi to active projects
- Document archived projects section
- Update workspace configuration

Archived apps can be re-activated by moving back to apps/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 07:03:59 +01:00

110 lines
1.8 KiB
Text

---
export interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="description" content="YouTube Wisdom Library - Transkribierte Vorträge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<nav>
<div class="nav-container">
<a href="/" class="logo">🎥 Wisdom Library</a>
<div class="nav-links">
<a href="/talks">Vorträge</a>
<a href="/speakers">Sprecher</a>
<a href="/categories">Kategorien</a>
</div>
</div>
</nav>
<slot />
<footer>
<p>&copy; 2024 YouTube Wisdom Library. Powered by OpenAI Whisper.</p>
</footer>
</body>
</html>
<style is:global>
html {
font-family: system-ui, sans-serif;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
nav {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
opacity: 0.9;
transition: opacity 0.2s;
}
.nav-links a:hover {
opacity: 1;
}
main {
flex: 1;
}
footer {
background: #f8f9fa;
text-align: center;
padding: 2rem;
margin-top: 4rem;
color: #666;
}
h1,
h2,
h3 {
color: #333;
}
p {
line-height: 1.6;
}
</style>