astro-blog/src/layouts/Layout.astro

29 lines
739 B
Plaintext

---
interface Props {
title: string;
description: string;
}
const { title } = Astro.props;
const { description } = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content={description} />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body class="bg-gray-100">
<main class="container mx-auto p-4 flex flex-col justify-center items-center">
<slot name="main"/>
</main>
<footer class="p-4 text-center">
<slot name="footer" />
</footer>
</body>
</html>