Render upcoming event markdown as HTML

This commit is contained in:
itsfinniii
2026-03-23 19:42:31 +01:00
parent 0d9fe0eaec
commit dbb8d84143
3 changed files with 21 additions and 5 deletions

View File

@@ -14,6 +14,14 @@ type UpcomingEvent = {
location: string;
mapLocation: [number, number];
startDate: Date;
endDate: Date;
endDate: Date | null;
thumbnail: PhotoProps;
}
type UpcomingEventProps = {
title: string;
description: string;
startDate: Date;
endDate: Date | null;
}