24 lines
583 B
TypeScript
24 lines
583 B
TypeScript
import { DateTime } from "luxon";
|
|
|
|
import type { timelineEntry } from "@interfaces/timeline.ts";
|
|
|
|
export const subTitles = [
|
|
"Oregon State University",
|
|
"College of Agricultural Sciences",
|
|
"Department of Environmental and Molecular Toxicology",
|
|
"Sinnhuber Aquatic Research Laboratory",
|
|
];
|
|
|
|
export const workingTimeline: timelineEntry[] = [
|
|
{
|
|
event: "Started",
|
|
eventDetail: "Joined SARL Engineering",
|
|
date: DateTime.fromISO("2013-09-01"),
|
|
},
|
|
{
|
|
event: "Finished",
|
|
eventDetail: "Left SARL Engineering",
|
|
date: DateTime.fromISO("2019-08-01"),
|
|
},
|
|
];
|