Samuel Shuert | c86816a | 2024-04-27 16:12:34 -0400 | [diff] [blame^] | 1 | --- |
| 2 | interface Props { |
| 3 | title: string; |
| 4 | } |
| 5 | |
| 6 | const { 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> |