Add src/layouts/Layout.astro from template
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending

This commit is contained in:
jordan 2026-01-29 23:57:47 +00:00
parent 2fec6a3e16
commit 59d4fe148d

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="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="e2e-fix-1061 - Built with Astro" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>{title}</title>
</head>
<body>
<slot />
</body>
</html>