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