23 lines
466 B
Text
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>
|