🐛 cleanup repo

This commit is contained in:
2025-07-29 12:42:43 +02:00
parent e555e280fe
commit 3a0554de87
24 changed files with 0 additions and 54 deletions

21
src/layouts/Layout.astro Normal file
View File

@@ -0,0 +1,21 @@
---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Lebenslauf von Max Mustermann" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{title}</title>
</head>
<body class="bg-gray-100 print:bg-white">
<slot />
</body>
</html>