log101-dot-dev/src/layouts/Layout.astro
log101 70986dc137
All checks were successful
/ Build (push) Successful in 27s
chore: add htmx script instead of cdn
2024-06-13 14:06:09 +03:00

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>