Initial commit: RustyAstro + OpenAPI-Typen aus RustyCMS

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Peter Meier
2026-02-13 15:58:36 +01:00
commit 054b5719e5
21 changed files with 12756 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
---
import '../styles/global.css';
interface Props {
title?: string;
description?: string;
}
const { title = 'RustyAstro', description } = Astro.props;
---
<!doctype html>
<html lang="de">
<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>{title}</title>
{description && <meta name="description" content={description} />}
</head>
<body class="min-h-screen bg-zinc-50 text-zinc-900">
<slot />
</body>
</html>