Move files

This commit is contained in:
Andras Schmelczer 2022-09-21 13:16:03 +02:00
parent 97ee3c77a5
commit f9540abdef
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
70 changed files with 134 additions and 119 deletions

View file

@ -0,0 +1,25 @@
import myNotesJpeg from '../media/my-notes.png?format=jpg';
import myNotesWebP from '../media/my-notes.png?format=webp';
import { Image } from '../../page/basics/image/image';
import { GitHub } from '../shared';
import { TimelineElementParameters } from '../../page/timeline/timeline-element/timeline-element';
export const myNotesTimelineElement: TimelineElementParameters = {
title: `My Notes`,
date: `2019 November`,
figure: new Image(myNotesWebP, myNotesJpeg, `two screenshots of the application`),
description: `A minimalist note organiser and editor powered by Markwon.`,
more: [
`
This is a basic android app for creating and filtering markdown notes
(based on #hashtags). It was my first exposure to Android development.
`,
`
All in all, it is not a tremendous engineering feat, but at least it's usable.
The knowledge gained while working on it was the more significant outcome of this
adventure.
`,
],
links: [new GitHub('https://github.com/schmelczerandras/my-notes')],
};