summaryrefslogtreecommitdiff
path: root/src/layouts/CenteredLayout.astro
blob: 1b9286c6818d6c572e44a94171f29bfbc489ad19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
import "../styles/global.css";
import Analytics from "../components/Analytics.astro";

interface Props {
  title?: string;
}

const { title = "Astro Site" } = Astro.props;
---

<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
    <meta name="viewport" content="width=device-width" />
    <meta name="generator" content={Astro.generator} />
    <title>{title}</title>
    <Analytics />
  </head>
  <body class="min-h-screen bg-white">
    <main class="flex min-h-screen flex-col items-center justify-center p-4">
      <div class="w-full max-w-4xl">
        <slot />
      </div>
    </main>
  </body>
</html>