--- import BaseLayout from "../../layouts/BaseLayout.astro"; const pageTitle = "Tag Index"; const allPosts = await Astro.glob("../../content/**/*.mdx"); const tags = [...new Set(allPosts.map((post) => post.frontmatter.tags).flat())]; ---

All the categories