update the event flip card + add remodel scrollbar

This commit is contained in:
Minh Vo
2025-12-26 17:28:32 -05:00
parent 157bdec9ea
commit dcdfb4ac6a
4 changed files with 188 additions and 114 deletions

View File

@@ -10,15 +10,18 @@ export type EventPost = {
location: string;
thumbnail: string;
category: string;
links: [{
title: string,
kind: string, // payment, registration, general (enum `kind`)
url: string
}],
links: LinkType[];
};
export type Category = 'allEvents' | 'academic' | 'professional' | 'social' | 'technical';
export type LinkType = {
title: string;
kind: EventLinkKind;
url: string;
};
export type EventLinkKind = 'payment' | 'registration' | 'general';
export type FAQ = {
question: string;
answer: string;