;
- projects: Record;
- writings: Record;
+export type Publication = {
+ title: string;
+ date: string;
+ journal: string;
+ authors: string[];
+ href: string;
+ description: string;
+};
+
+export interface Data {
+ experience: Record;
+ projects: Record;
+ writings: Record;
+ publications: Record,
}