added all components and assembeled an okayish looking website
This commit is contained in:
parent
33621b1556
commit
d5e25dac3e
44 changed files with 38970 additions and 1587 deletions
9
src/types/InfoCardProps.ts
Normal file
9
src/types/InfoCardProps.ts
Normal 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
8
src/types/Job.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
export default interface Job {
|
||||
title: string,
|
||||
company: string,
|
||||
uri?: string,
|
||||
timespan: string,
|
||||
items: string[]
|
||||
image: string
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue