···44import mc_cyan from "@/assets/mc_cyan_banner.png";
55import mc_magenta from "@/assets/mc_magenta_banner.png";
66import mc_blue from "@/assets/mc_blue_banner.png";
77-import Arrow from "@/assets/arrow.svg.astro";
77+import Arrow from "@/assets/arrow.svg";
8899type colour = "red" | "cyan" | "magenta" | "blue";
1010type position = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
+8-3
src/pages/blog/index.astro
···22import Base from "@/Base.astro";
33import Rss from "@/assets/rss.svg";
44import { getCollection } from "astro:content";
55-import Post from "@/components/blog/post.astro";
55+import Post from "@/components/blog/Post.astro";
66+import { blog } from "@/config";
6778const posts = await getCollection("blog");
89---
···1718 border-radius: 0.5rem;
18191920 & svg {
2020- width: .8em;
2121+ width: 0.8em;
2122 aspect-ratio: 1;
2223 }
2324 }
2525+2626+ h1 {
2727+ margin-bottom: var(--y-gap);
2828+ }
2429</style>
25302631<Base title="Blog">
2732 <main>
2828- <h1>
3333+ <h1 style={`--y-gap: ${blog.post.yGap}rem`}>
2934 Blog
3035 <a href="/rss.xml" aria-label="Rss Feed">
3136 <Rss width=".8em" height=".8em" />
+1-1
src/pages/index.astro
···11---
22// import Map from "@/components/map.astro"
33import Base from "@/Base.astro";
44-import Map from "@/components/index/map.astro";
44+import Map from "@/components/index/Map.astro";
55---
66<Base title="home">
77 <style slot="head">