Move files
This commit is contained in:
parent
97ee3c77a5
commit
f9540abdef
70 changed files with 134 additions and 119 deletions
78
src/data/portfolio.ts
Normal file
78
src/data/portfolio.ts
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
import meJpeg from './media/me.jpg?format=jpg';
|
||||
import meWebP from './media/me.jpg?format=webp';
|
||||
import cvEnglish from './media/cv-andras-schmelczer.pdf';
|
||||
|
||||
import { PageFooter } from '../page/footer/footer';
|
||||
import { Image } from '../page/basics/image/image';
|
||||
import { PageHeader } from '../page/header/header';
|
||||
import { PageTimeline } from '../page/timeline/timeline';
|
||||
import { PageImageViewer } from '../page/image-viewer/image-viewer';
|
||||
import { PageBackground } from '../page/background/background';
|
||||
import { Main } from '../page/main/main';
|
||||
import { Body } from '../page/body/body';
|
||||
import { declaredTimelineElement } from './projects/declared';
|
||||
import { sdf2dTimelineElement } from './projects/sdf2d';
|
||||
import { adAstraTimelineElement } from './projects/ad-astra';
|
||||
import { forexTimelineElement } from './projects/forex';
|
||||
import { myNotesTimelineElement } from './projects/my-notes';
|
||||
import { nuclearTimelineElement } from './projects/nuclear';
|
||||
import { nuclearEditorTimelineElement } from './projects/nuclear-editor';
|
||||
import { citySimulationTimelineElement } from './projects/city-simulation';
|
||||
import { platformGameTimelineElement } from './projects/platform-game';
|
||||
import { photosTimelineElement } from './projects/photos';
|
||||
import { ledsTimelineElement } from './projects/leds';
|
||||
import { towersTimelineElement } from './projects/towers';
|
||||
import { greatAiTimelineElement } from './projects/great-ai';
|
||||
|
||||
export const create = () =>
|
||||
new Body(
|
||||
new Main(
|
||||
new PageBackground(1, 1),
|
||||
new PageHeader({
|
||||
name: `András Schmelczer`,
|
||||
photo: new Image(meWebP, meJpeg, `a picture of me`, false),
|
||||
about: [
|
||||
`
|
||||
I have always been fascinated by the engineering feats that surround us and pervade every aspect
|
||||
of our lives. When I realised I might someday be able to contribute to this field, I knew that
|
||||
this would become my life's ambition.
|
||||
As I am starting my third semester at Leiden University,
|
||||
I feel I am getting closer to my ambition every day.
|
||||
`,
|
||||
`
|
||||
Discover some of my more interesting projects. They are all listed below.
|
||||
Further information about me can be found at the bottom of the page.
|
||||
`,
|
||||
],
|
||||
}),
|
||||
new PageTimeline({
|
||||
showMoreText: `Show details`,
|
||||
showLessText: `Show less`,
|
||||
elements: [
|
||||
greatAiTimelineElement,
|
||||
declaredTimelineElement,
|
||||
sdf2dTimelineElement,
|
||||
adAstraTimelineElement,
|
||||
forexTimelineElement,
|
||||
myNotesTimelineElement,
|
||||
towersTimelineElement,
|
||||
nuclearTimelineElement,
|
||||
nuclearEditorTimelineElement,
|
||||
citySimulationTimelineElement,
|
||||
platformGameTimelineElement,
|
||||
photosTimelineElement,
|
||||
ledsTimelineElement,
|
||||
],
|
||||
}),
|
||||
new PageFooter({
|
||||
title: `Learn more`,
|
||||
curriculaVitae: [{ name: `Curriculum vitae`, url: cvEnglish }],
|
||||
email: `andras@schmelczer.dev`,
|
||||
linkedin: `https://www.linkedin.com/in/andras-schmelczer-35487017b`,
|
||||
lastEditText: `Last modified on `,
|
||||
// @ts-ignore: injected by webpack
|
||||
lastEdit: new Date(__CURRENT_DATE__),
|
||||
})
|
||||
),
|
||||
new PageImageViewer()
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue