---
/**
* MOREMINIMORE - BLOG CARD COMPONENT (LIGHT THEME)
*/
interface Props {
title: string;
excerpt: string;
image?: string;
date: Date;
slug: string;
category: string;
}
const { title, excerpt, image, date, slug, category } = Astro.props;
const formattedDate = date.toLocaleDateString('th-TH', { year: 'numeric', month: 'short', day: 'numeric' });
---
{image &&

}
{category}
{title}
{excerpt}