quickshell-web/src/layouts/BaseLayout.astro
2024-10-18 18:42:12 -07:00

25 lines
523 B
Text

---
import Header from "@components/Header.astro";
import Footer from "@src/components/Footer.astro";
import Head from "@config/Head.astro";
import PreTheme from "@config/PreTheme.astro";
interface Props {
title: string;
description: string;
image: string;
}
const { title, description } = Astro.props;
---
<html lang="en" class="dark">
<head>
<Head description={description} title={title} />
<PreTheme />
</head>
<body class="baselayout">
<Header />
<slot />
<Footer />
</body>
</html>