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,31 +1,23 @@
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 towers from '../media/towers.png';
import towersPoster from '../media/towers.png';
import { GitHub, Open } from '../shared';
export const towersTimelineElement: TimelineElementParameters = {
title: `Towers tracking app`,
date: `2019 August - September`,
export const towers: TimelineElementParameters = {
title: 'Towers tracking app',
date: '2019 August - September',
figure: Image({
image: towers,
alt: `a picture of the website`,
image: towersPoster,
alt: 'a picture of the website',
container: true,
}),
description: `An aesthetic representation of your previous and current goals/tasks.`,
description: 'An aesthetic representation of your previous and current goals/tasks.',
more: [
`
This project served me with an opportunity to deepen my Angular knowledge. The most interesting aspect of it
(apart from designing and implementing the pleasing visuals) was coming up with its data structure and persistence.
Finally, I decided on using a trie. Its properties make it fairly simple to find the difference between the server stored
and client stored versions and then only send this delta through the network. Also, its immutable nature helped with
the code quality as well.
`,
`
In hindsight, I would certainly add some finishing touches to it. For instance, dark mode, a tutorial, and PWA features.
`,
'This project served me with an opportunity to deepen my Angular knowledge. The most interesting aspect of it (apart from designing and implementing the pleasing visuals) was coming up with its data structure and persistence. Finally, I decided on using a trie. Its properties make it fairly simple to find the difference between the server stored and client stored versions and then only send this delta through the network. Also, its immutable nature helped with the code quality as well.',
'In hindsight, I would certainly add some finishing touches to it. For instance, dark mode, a tutorial, and PWA features.',
],
links: [
GitHub('https://github.com/schmelczerandras/life-towers/'),
GitHub('https://github.com/schmelczer/life-towers/'),
Open('https://towers.schmelczer.dev'),
],
};