blog.z0x.ca/src/layouts/Layout.astro
2025-01-17 20:36:33 -05:00

24 lines
425 B
Text

---
import Footer from "@components/Footer.astro";
import Head from "@components/Head.astro";
import { SITE } from "@consts";
type Props = {
title: string;
description: string;
};
const { title, description } = Astro.props;
---
<html lang="en">
<head>
<Head title={`${title} | ${SITE.TITLE}`} description={description} />
</head>
<body>
<main>
<slot />
</main>
<Footer />
</body>
</html>