creator/web/src/layouts/RootLayout.astro
2023-06-25 14:48:33 +02:00

31 lines
671 B
Plaintext

---
import Footer from "@/components/Layout/Footer.astro";
import "@/styles/global.css";
export interface Props {
title: string;
}
const { title } = Astro.props;
---
<!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" />
<script
defer
data-domain="creator.tempblade.com"
src="https://analytics.unom.io/js/plausible.js"></script>
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<slot />
<Footer />
</body>
</html>