Add the photo category index

This commit is contained in:
itsfinniii
2026-03-28 20:40:35 +01:00
parent cabdbd51cc
commit 3435819f79
2 changed files with 45 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ import ProjectIndex from "@/components/projects/ProjectIndex.astro";
import Webpage from "@/components/webpage/Webpage.astro";
import BlogPost from "@/components/blogs/BlogPost.astro";
import ProjectPost from "@/components/projects/ProjectPost.astro";
import CategoryIndex from "@/components/photos/CategoryIndex.astro";
export async function getStaticPaths() {
const settings = await getSettings();
@@ -157,7 +158,7 @@ if (page === null || page.page === null || !page.page.exists) {
}
}}}>
<Fragment slot="content">
<div>PhotoCategoryIndex</div>
<CategoryIndex />
</Fragment>
</WebpageLayout>
) }