-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added pages: About TMEIT, Documents, along with mobile fixes to the u…
…ser menu (#196) * Have started to work on a new documents-page. I will have to figure out how to import the module to the app * tmp * Added the About TMEIT-page * About page and documents page done - for now * updated version number Co-authored-by: Sebbe <[email protected]>
- Loading branch information
Showing
13 changed files
with
74 additions
and
6 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
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
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
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,25 @@ | ||
import styled from "@emotion/styled"; | ||
import {Link} from "react-router-dom"; | ||
|
||
import Centered from "../components/Centered.js"; | ||
import TextSummary from "../components/TextSummary.js"; | ||
|
||
const StyledAbout = styled(About)({ | ||
[TextSummary]: { | ||
maxWidth: "80em", | ||
margin: "2em" | ||
} | ||
}); | ||
|
||
function About({className}){ | ||
return( | ||
<Centered className={className}> | ||
<TextSummary> | ||
<h1>About TMEIT</h1> | ||
<p>* <Link to="/documents">Documents</Link></p> | ||
<p>* TMEIT's history</p> | ||
</TextSummary> | ||
</Centered> | ||
); | ||
} | ||
export default StyledAbout |
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,24 @@ | ||
import styled from "@emotion/styled"; | ||
|
||
import Centered from "../components/Centered.js"; | ||
import TextSummary from "../components/TextSummary.js"; | ||
|
||
const StyledDocuments = styled(Documents)({ | ||
[TextSummary]: { | ||
maxWidth: "80em", | ||
margin: "2em" | ||
} | ||
}); | ||
|
||
function Documents({className}){ | ||
return( | ||
<Centered className={className}> | ||
<TextSummary> | ||
<h1>Documents</h1> | ||
<p>* Reglemente - for now you can find the reglemente in google drive, click "Meeting Protocols"</p> | ||
<p>* <a target="_blank" href="https://drive.google.com/drive/folders/16nr4Zem5E2HfjWQ135W_fiy7F58fCFDk?usp=share_link">Meeting protocols</a></p> | ||
</TextSummary> | ||
</Centered> | ||
); | ||
} | ||
export default StyledDocuments |
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