update the event flip card + add remodel scrollbar
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user