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 photosJpeg from '../media/photos.jpg?format=jpg';
import photosWebP from '../media/photos.jpg?format=webp';
import { Image } from '../../page/basics/image/image';
import { Open } from '../shared';
import { TimelineElementParameters } from '../../page/timeline/timeline-element/timeline-element';
export const photosTimelineElement: TimelineElementParameters = {
title: `Photos`,
date: `2016 summer`,
figure: new Image(photosWebP, photosJpeg, `a picture of the website`),
description: `A simple webpage where you can view my photos.`,
more: [
`
Taking time to appreciate the world around us fills me with joy. That's why I like
to go on walks with a camera. I might not end up with great photos, nonetheless, I usually
end up with some inspiration regarding my current or next project.
`,
`
As for the webpage, a webpack script generates the site from the photos in a directory,
automatic resizing to multiple quality settings is also part of the pipeline.
`,
],
links: [new Open('https://photo.schmelczer.dev')],
};