This commit is contained in:
Yannik
2023-05-20 17:13:10 +02:00
commit 98ee03d9ed
15 changed files with 5456 additions and 0 deletions

14
src/layouts/Base.astro Normal file
View File

@@ -0,0 +1,14 @@
---
let { title } = Astro.props;
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body><slot /></body>
</html>