---
import { getCollection } from "astro:content";
import Base from "@layouts/Base.astro";
const title = "Keywords";
const description = "Keywords";
const blogs = await getCollection("blog");
let keywords = [
...new Set([
...blogs.flatMap(({ data }) => [...(data.keywords ?? [])]),
]),
];
---