💻 | Working so hard on the design review

This commit is contained in:
2021-04-02 21:58:07 +02:00
parent ca8e80af4b
commit 08599b09d1
47 changed files with 1036 additions and 1609 deletions

View File

@@ -36,5 +36,28 @@ interface Formation {
end_date: string
}
interface Tag {
slug: string
}
export { FormData, InfoData, Skill, Experience, Formation }
interface Post {
slug: string,
title: string,
description: string,
reading_time: number,
tags: Array<Tag>,
cover: string,
date: string
}
interface Project {
slug: string,
title: string,
description: string,
url: string,
cover: string,
color: string,
skills: Array<Skill>
}
export { FormData, InfoData, Skill, Experience, Formation, Post, Tag, Project }