chore(talks): show the most recent talks first

This commit is contained in:
Oliver Davies 2023-07-04 07:08:19 +01:00
parent 36d11d7654
commit ba3f644557
2 changed files with 13 additions and 4 deletions

View file

@ -1,12 +1,12 @@
---
import Markdown from "../Markdown.astro";
interface Event {
export type Event = {
date: string;
location: string;
name: string;
online?: boolean;
time: string;
time?: string;
url?: string;
}