Refactor portfolio and fix grammar

This commit is contained in:
schmelczerandras 2020-11-26 17:15:57 +01:00
parent 86ddc3d0d8
commit 59a0afbac7
37 changed files with 546 additions and 451 deletions

13
src/data/photos.ts Normal file
View file

@ -0,0 +1,13 @@
import photosJpeg from '../static/media/photos.jpg?format=jpg';
import photosWebP from '../static/media/photos.jpg?format=webp';
import { Image } from '../page/basics/image/image';
import { Open } from './shared';
export const photosTimelineElement = {
date: `2016 summer`,
title: `Photos`,
figure: new Image(photosWebP, photosJpeg, `a picture of the website`),
description: `A simple web page where you can view my photos.`,
links: [new Open('https://photo.schmelczer.dev')],
};