Initial commit from Astro

This commit is contained in:
houston[bot] 2025-12-19 14:06:51 -08:00 committed by badbl0cks
commit 0e01ed5493
No known key found for this signature in database
14 changed files with 363 additions and 0 deletions

22
src/layouts/Layout.astro Normal file
View file

@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
</head>
<body>
<slot />
</body>
</html>
<style>
html,
body {
margin: 0;
width: 100%;
height: 100%;
}
</style>