-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from SoorajModi/3-policy
Policy
- Loading branch information
Showing
9 changed files
with
87 additions
and
17 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
import React from 'react'; | ||
|
||
// eslint-disable-next-line react/prop-types | ||
function FileViewer({ file }) { | ||
return ( | ||
<div style={styles.container}> | ||
<object data={file} type="application/pdf" style={styles.object}> | ||
<p> | ||
It appears you do not have a PDF plugin for this browser. No biggie... you can | ||
<a href={file}> | ||
click here to download the PDF | ||
file. | ||
</a> | ||
</p> | ||
</object> | ||
</div> | ||
); | ||
} | ||
|
||
const styles = { | ||
container: { | ||
height: '90vh', | ||
paddingBottom: '10vh', | ||
}, | ||
object: { | ||
width: '100%', | ||
height: '100%', | ||
}, | ||
}; | ||
|
||
export default FileViewer; |
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 React from 'react'; | ||
|
||
function Header() { | ||
return ( | ||
<div> | ||
<h1 style={styles.title}>SOCIS Policies</h1> | ||
<p style={styles.subtext}>Last updated May 28, 2021</p> | ||
</div> | ||
); | ||
} | ||
|
||
const styles = { | ||
title: { | ||
textAlign: 'center', | ||
marginBottom: '0', | ||
}, | ||
subtext: { | ||
textAlign: 'center', | ||
fontStyle: 'italic', | ||
marginTop: '0', | ||
}, | ||
}; | ||
|
||
export default Header; |
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,31 @@ | ||
import PolicyPage from './PolicyPage'; | ||
import React from 'react'; | ||
import Container from '@material-ui/core/Container'; | ||
import { NavBar } from '../../components'; | ||
import Header from './header'; | ||
import FileViewer from './fileViewer'; | ||
|
||
import constitution from '../../assets/Constitution.pdf'; | ||
import clubSpacePolicy from '../../assets/ClubSpacePolicy.pdf'; | ||
import committeeAndStaffPolicy from '../../assets/CommitteeAndStaffPolicy.pdf'; | ||
import makersSpacePolicy from '../../assets/MakersSpacePolicy.pdf'; | ||
|
||
function PolicyPage() { | ||
return ( | ||
<> | ||
<NavBar /> | ||
<Container> | ||
<Header /> | ||
<h2>Constitution</h2> | ||
<FileViewer file={constitution} /> | ||
<h2>Club Space Policy</h2> | ||
<FileViewer file={clubSpacePolicy} /> | ||
<h2>Committee and Staff Policy</h2> | ||
<FileViewer file={committeeAndStaffPolicy} /> | ||
<h2>Makerspace Policy</h2> | ||
<FileViewer file={makersSpacePolicy} /> | ||
</Container> | ||
</> | ||
); | ||
} | ||
|
||
export default PolicyPage; |