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.

27 lines
505 B

---
import '../css/base.scss'
import '../css/font.scss'
import '../css/color.scss'
import Footer from '../components/footer.astro';
const {title} = Astro.props;
---
<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>
<slot />
<Footer entries={{
Homepage: "/",
Blog: "/blog",
"About Us": "/about"
}} />
</body>
</html>