blob: c797514233e2144486b622792d0442ea02b6afaa [file] [log] [blame]
Samuel Shuertc86816a2024-04-27 16:12:34 -04001---
2interface Props {
3 title: string;
4}
5
6const { title } = Astro.props;
7---
8
9<!doctype html>
10<html lang="en">
11 <head>
12 <meta charset="UTF-8" />
13 <meta name="description" content="Samuel Shuert Resume" />
14 <meta name="viewport" content="width=device-width" />
15 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
16 <meta name="generator" content={Astro.generator} />
17 <title>{title}</title>
18 </head>
19 <body class="flex justify-center my-4 w-full flex-col gap-2 lg:w-[1024px] m-auto">
20 <slot />
21 </body>
22</html>