You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
673 B

---
import "../css/base.scss";
import "../css/font.scss";
import "../css/color.scss";
import Footer from "../components/footer.astro";
const { title } = Astro.props;
---
<!DOCTYPE html>
<html lang="en">
<!--TODO: set meta tags for discord embed-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
</head>
<body class="main-content">
<slot />
<Footer
entries={{
Homepage: "/",
Blog: "/blog",
Fanfic: "/fanfic",
"About Us": "/about",
}}
/>
</body>
</html>