--- import Button from '@/components/Button.astro' import PageLayout from '@/layouts/BaseLayout.astro' import { getAllPosts, getUniqueCategoriesWithCount } from '@/utils' const allPosts = await getAllPosts() const allCategories = getUniqueCategoriesWithCount(allPosts) const meta = { description: "A list of all the topics I've written about in my posts", title: 'All Categories' } ---

Categories

{allCategories.length === 0 &&

No posts yet.

} { allCategories.length > 0 && ( ) }