create layout and pages

This commit is contained in:
2022-12-06 23:01:38 -05:00
commit 2ea432eca4
13 changed files with 9653 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
---
import '@picocss/pico'
import Header from '../components/Header.astro'
import Footer from '../components/Footer.astro'
export 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" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body class="container">
<Header />
<slot />
<Footer />
</body>
</html>