Fix llms.txt event times: format in America/Asuncion timezone #4

Merged
Michilis merged 1 commits from dev into main 2026-02-12 06:28:52 +00:00
Showing only changes of commit 77e92e5d96 - Show all commits

View File

@@ -51,12 +51,17 @@ async function getUpcomingEvents(): Promise<LlmsEvent[]> {
}
}
// Event times are always shown in Paraguay time (America/Asuncion) so llms.txt
// matches what users see on the website, regardless of server timezone.
const EVENT_TIMEZONE = 'America/Asuncion';
function formatEventDate(dateStr: string): string {
return new Date(dateStr).toLocaleDateString('en-US', {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: EVENT_TIMEZONE,
});
}
@@ -65,6 +70,7 @@ function formatEventTime(dateStr: string): string {
hour: '2-digit',
minute: '2-digit',
hour12: true,
timeZone: EVENT_TIMEZONE,
});
}