Samuel Shuert | a42ca96 | 2024-04-27 16:13:23 -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's main site" /> |
| 14 | <meta name="viewport" content="width=device-width" /> |
| 15 | <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> |
Samuel Shuert | 959f099 | 2024-04-29 20:58:01 -0400 | [diff] [blame^] | 16 | <link rel="me" href="https://tty0.social/@thecodedprof" /> |
Samuel Shuert | a42ca96 | 2024-04-27 16:13:23 -0400 | [diff] [blame] | 17 | <meta name="generator" content={Astro.generator} /> |
| 18 | <title>{title}</title> |
| 19 | </head> |
| 20 | <body class="bg-mantle flex justify-center"> |
| 21 | <main class="flex justify-center my-4 mx-4 w-full flex-col gap-2 lg:w-[1024px]"> |
| 22 | <slot /> |
| 23 | </main> |
| 24 | </body> |
| 25 | </html> |
| 26 | <style is:global> |
| 27 | @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap'); |
| 28 | :root { |
| 29 | font-family: 'Fira Code', sans-serif; |
| 30 | } |
| 31 | </style> |