quickshell-web/src/layouts/BaseLayout.astro
2024-10-29 01:45:00 +02:00

25 lines
532 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>