Files
resume_klara/src/layouts/Layout.astro
2025-07-29 12:42:43 +02:00

22 lines
456 B
Plaintext

---
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>