try to fix the titles

This commit is contained in:
Barrett Ruth 2025-10-08 19:30:10 -04:00
parent 7b6b0b4176
commit 4507528f52
6 changed files with 6 additions and 7 deletions

View file

@ -2,7 +2,7 @@
import BaseLayout from "../layouts/BaseLayout.astro";
import { getCollection } from "astro:content";
const title = "Git Repositories";
const title = "git repos";
const repos = await getCollection("git");
repos.sort((a, b) => a.slug.localeCompare(b.slug));
---