29 lines
712 B
Plaintext
29 lines
712 B
Plaintext
---
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
import "../styles/main.css";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="Astro description" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<script src="../scripts/htmx.min.js"></script>
|
|
<title>{title}</title>
|
|
</head>
|
|
<body class="flex justify-center font-sans">
|
|
<div
|
|
class="md:max-w-[750px] w-full flex flex-col gap-8 md:gap-6 my-6 md:mx-0 mx-4 overflow-hidden"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</body>
|
|
</html>
|