Move files
This commit is contained in:
parent
97ee3c77a5
commit
f9540abdef
70 changed files with 134 additions and 119 deletions
25
src/data/projects/my-notes.ts
Normal file
25
src/data/projects/my-notes.ts
Normal 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')],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue