Add Roboto

This commit is contained in:
2024-01-06 17:19:59 +01:00
parent 5e57a8c99d
commit ce27973c68
15 changed files with 299 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ import {astroI18n} from "astro-i18n";
const { title, description } = Astro.props.frontmatter || Astro.props;
import { SEO } from "astro-seo";
import "../../public/fonts/roboto/roboto.css";
const iconImage = await getImage({src: icon, height: 32, width: 32, format: "png", quality: 100});
---
@@ -35,3 +37,9 @@ const iconImage = await getImage({src: icon, height: 32, width: 32, format: "png
<slot />
</body>
</html>
<style>
body {
font-family: "Roboto", sans-serif;
}
</style>