-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enhance roadmap --------- Co-authored-by: Simon Lund <[email protected]>
- Loading branch information
1 parent
6d518fb
commit 1b015f1
Showing
13 changed files
with
351 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
- [ ] rework texts | ||
- [ ] change font | ||
- [ ] make font large on main page for no mobile users | ||
|
||
- [ ] prevent ugly loading of images | ||
- [ ] prevent layout from unmounting when switching between pages (https://www.gatsbyjs.com/docs/how-to/routing/layout-components/) | ||
- [ ] todo create data directory for all data lists (team, faq, links, roadmap) | ||
- [ ] faq with real data | ||
- [ ] format |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import * as React from "react"; | ||
|
||
const Presentation = ({presentation}) => { | ||
const { | ||
title, | ||
file, | ||
description | ||
} = presentation; | ||
|
||
return ( | ||
<div className={'card border-2 border-primary shadow-xl'}> | ||
<div className={'card-body'}> | ||
<h2 className={'card-title !mb-4'}>{title}</h2> | ||
{description && <p className={'text-2xl font-light'}>{description}</p>} | ||
<div className={'card-actions justify-end'}> | ||
<a href={`/presentations/${file}`} className={'btn'} role="button" target="_blank" | ||
rel="noreferrer">Open</a> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
|
||
export default Presentation; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
[ | ||
{ | ||
"to":"/", | ||
"text":"Start" | ||
"to": "/", | ||
"text": "Start" | ||
}, | ||
{ | ||
"to":"/roadmap", | ||
"text":"Roadmap" | ||
"to": "/roadmap", | ||
"text": "Roadmap" | ||
}, | ||
{ | ||
"to":"/showcases", | ||
"text":"Showcases" | ||
"to": "/showcases", | ||
"text": "Showcases" | ||
}, | ||
{ | ||
"to":"/about", | ||
"text":"About" | ||
"to": "/presentations", | ||
"text": "Presentations" | ||
}, | ||
{ | ||
"to": "/about", | ||
"text": "About" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"title": "Lightning Talk: eduTAP", | ||
"file":"Lightning_Talk_eduTAP.pdf", | ||
"description": "Short presentation on eduTAP" | ||
} | ||
] |
Oops, something went wrong.