quickshell-web/src/layouts/BaseLayout.astro
2024-11-09 04:30:27 -08:00

23 lines
466 B
Text

---
//import Header from "@components/Header.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 />
</body>
</html>