---
export interface Props {
title: string;
description: string;
category: string;
categoryColor?: string;
date: string;
readTime: string;
image?: string;
slug?: string;
}
const {
title,
description,
category,
categoryColor = 'bg-gold',
date,
readTime,
image,
slug = '#'
} = Astro.props;
const imageUrl = image || '/images/blog/default.avif';
---
{category}