- You need globally accessible
node
andyarn
- Run
yarn install
to install dependencies
- Run
yarn dev
- Go to http://localhost:8080
- Run
yarn deploy
Edit the file data/partners/index.ts
. It contains an array of partners data.
Item structure:
url
- partner linkpartnerName
- partner nameicon1x
- default logo (height 100px)icon2x
- logo for retina display (height 200px)
Logos should be placed in the folder data/partners/imgs
.
Edit the file data/news/index.ts
. It contains an array of news data.
Item structure:
summary
- short news descriptionurl
- link to the full newsdate
- publication date of the news. Allowed date format: MM.DD.HHHH (month.day.year).
Edit the file data/profMemberships/index.ts
. It contains an array of memberships data.
Item structure:
membershipName
- membership namedescription
- membership descriptionicon1x
- default logoicon2x
- logo for retina display (twice as much asicon1x
)
Logos should be placed in the folder data/profMemberships/imgs
.
Edit the file data/team/index.ts
. It contains an array of team members data.
Item structure:
links
- array of social linksfullName
- first name and last nameposition
- position in teamphoto1x
- default photo (120x134)photo2x
- photo for retina display (240x168)tags
- an array of tags that appear under each team member
Photos should be placed in the folder data/team/imgs
.
Edit the file data/events/index.ts
. It contains an array of events data.
Item structure:
eventName
- event namelink
- link to eventlocation
- event locationdescription
- event descriptionstartDate
- start date of eventfinishDate
- finish date of event (optional)image1x
- default image (590x275)image2x
- image for retina display (1180 x 550)
Images should be placed in the folder data/events/imgs
.
Some texts can be edited in the file src/services/i18n/locales/en.ts
.
MIT, 2019