managarten/apps-archived/wisekeep/apps/landing/src/layouts/AdminLayout.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

66 lines
1.9 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 Transcriber Admin" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{title}</title>
</head>
<body class="bg-gray-900 text-gray-100">
<nav class="bg-gray-800 border-b border-gray-700">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<a href="/admin" class="flex items-center space-x-2">
<span class="text-2xl">🎥</span>
<span class="text-xl font-bold text-white">Admin Panel</span>
</a>
<div class="ml-10 flex items-baseline space-x-4">
<a
href="/admin"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium"
>Dashboard</a
>
<a
href="/admin/playlists"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium"
>Playlists</a
>
<a
href="/admin/transcripts"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium"
>Transkripte</a
>
<a
href="/admin/settings"
class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium"
>Einstellungen</a
>
</div>
</div>
<div class="flex items-center space-x-4">
<a href="/" class="text-blue-400 hover:text-blue-300 text-sm"
>→ Zur öffentlichen Seite</a
>
</div>
</div>
</div>
</nav>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<slot />
</main>
</body>
</html>
<style is:global>
@import '../styles/global.css';
</style>