Reformat timeline elements

This commit is contained in:
Andras Schmelczer 2022-09-24 22:19:59 +02:00
parent af45688029
commit aab4cade5e
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
17 changed files with 201 additions and 336 deletions

View file

@ -1,27 +1,20 @@
import { Image } from '../../page/basics/image/image.html';
import { Image } from '../../page/image-viewer/image/image.html';
import { TimelineElementParameters } from '../../page/timeline/timeline-element/timeline-element-parameters';
import processSimulatorInput from '../media/process-simulator-input.jpg';
import nuclearEditorPoster from '../media/process-simulator-input.jpg';
export const nuclearEditorTimelineElement: TimelineElementParameters = {
title: `Graph editing application`,
date: `2018 October - November`,
export const nuclearEditor: TimelineElementParameters = {
title: 'Graph editing application',
date: '2018 October - November',
figure: Image({
image: processSimulatorInput,
alt: `a picture of the simulator's UI`,
image: nuclearEditorPoster,
alt: "a picture of the simulator's UI",
container: true,
}),
description: `
An intuitive editor to create and edit input for the nuclear facility simulator.
`,
description:
'An intuitive editor to create and edit input for the nuclear facility simulator.',
more: [
`
Nodes can be moved with drag & drop gestures.
Editing the parameters of elements can be done on the right panel.
`,
`
The UI is built with JavaFX. The output can be exported as JSON or
directly uploaded to the simulation backend.
`,
'Nodes can be moved with drag & drop gestures. Editing the parameters of elements can be done on the right panel.',
'The UI is built with JavaFX. The output can be exported as JSON or directly uploaded to the simulation backend.',
],
links: [],
};