added all components and assembeled an okayish looking website

This commit is contained in:
Nicholas Orlowsky 2021-06-30 15:19:59 -04:00
parent 33621b1556
commit d5e25dac3e
44 changed files with 38970 additions and 1587 deletions

View file

@ -0,0 +1,9 @@
export default interface InfoCardProps {
title: string,
description: string,
listTitle: string,
list: string[],
linkTitle?: string,
link?: string,
listClassName?: string
}

8
src/types/Job.ts Normal file
View file

@ -0,0 +1,8 @@
export default interface Job {
title: string,
company: string,
uri?: string,
timespan: string,
items: string[]
image: string
}