blob: 3dfc68c94d154ed2423c73abbee93ea76d71c0e7 [file] [log] [blame]
Samuel Shuerta42ca962024-04-27 16:13:23 -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's main site" />
14 <meta name="viewport" content="width=device-width" />
15 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
Samuel Shuert959f0992024-04-29 20:58:01 -040016 <link rel="me" href="https://tty0.social/@thecodedprof" />
Samuel Shuerta42ca962024-04-27 16:13:23 -040017 <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>