1// SPDX-FileCopyrightText: 2025 Norbert Melzer
2// SPDX-FileContributor: Norbert Melzer
3//
4// SPDX-License-Identifier: MIT
5
6import { authors } from "./schemas/authors";
7import { blog } from "./schemas/blog";
8
9export const collections = {
10 authors,
11 blog,
12};