Dane's personal website
dane.computer
1---
2interface Props {
3 title: string;
4 description: string;
5}
6
7import Meta from "../components/Meta.astro";
8import Navbar from "../components/Navbar.astro";
9const { title, description } = Astro.props;
10---
11
12<!doctype html>
13<html lang="en" class="font-sans" dir="ltr">
14 <Meta title={title} description={description} />
15 <body>
16 <Navbar />
17 <main class="max-w-5xl px-3 mx-auto xl:px-0" id="maincontent">
18 <h1 class="mt-4 mb-1 text-4xl font-bold">
19 {title}
20 </h1>
21 <p class="mb-4 text-gray-500">{description}</p>
22 <div class="pb-6 prose max-w-none">
23 <slot />
24 </div>
25 </main>
26 </body>
27</html>