Add avoid
This commit is contained in:
parent
d3927cc13c
commit
f41bab1156
5 changed files with 38 additions and 3 deletions
BIN
src/data/media/avoid.png
Normal file
BIN
src/data/media/avoid.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 136 KiB |
|
|
@ -10,6 +10,7 @@ import { UpArrowButton } from '../page/up-arrow-button/up-arrow-button';
|
|||
import cvEnglish from './media/cv-andras-schmelczer.pdf';
|
||||
import me from './media/me.jpg';
|
||||
import { adAstra } from './projects/ad-astra';
|
||||
import { avoid } from './projects/avoid';
|
||||
import { citySimulation } from './projects/city-simulation';
|
||||
import { declared } from './projects/declared';
|
||||
import { forex } from './projects/forex';
|
||||
|
|
@ -53,6 +54,7 @@ const main = new Main(
|
|||
nuclear,
|
||||
nuclearEditor,
|
||||
citySimulation,
|
||||
avoid,
|
||||
platformGame,
|
||||
photos,
|
||||
leds,
|
||||
|
|
|
|||
18
src/data/projects/avoid.ts
Normal file
18
src/data/projects/avoid.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { Preview } from '../../page/preview/preview';
|
||||
import { TimelineElementParameters } from '../../page/timeline-element/timeline-element-parameters';
|
||||
import avoidPoster from '../media/avoid.png';
|
||||
import { Open } from '../shared';
|
||||
|
||||
export const avoid: TimelineElementParameters = {
|
||||
title: 'Avoid',
|
||||
date: '2018 January',
|
||||
figure: new Preview(
|
||||
avoidPoster,
|
||||
'https://schmelczer.dev/avoid',
|
||||
'A webpage showcasing the SDF-2D project.'
|
||||
),
|
||||
description:
|
||||
"I recently found my first-ever web game. It's incredibly simple but I killed some time with it, so feel free to try it out but don't judge too harshly.",
|
||||
|
||||
links: [Open('https://schmelczer.dev/avoid')],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue