24 lines
425 B
Text
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>
|