Example e2e
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-03-07 22:23:32 -08:00
parent e5102000b4
commit fbc3d035d8
18 changed files with 5461 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
---
const pageTitle = Astro.props.title || "Corwin Perren";
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{pageTitle}</title>
</head>
<body class="container mx-auto">
<slot/>
</body>
</html>