-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version Update from v0.7.0 to v0.8.0 (#371)
Version update here will be from v0.7.0 to v0.8.0 for the Master branch. Will create a new v0.8.0 Release after we got this merged into Master. Major updates since last version includes: Adjustments to set permission forms (Issue 307/use webID to set permissions #349) Refactoring of the Footer component (Refactor Footer #364) Ability to upload via camera for mobile (Issue 335/device camera uploads #357) Updates to new message modal (Issue 286/new message styling #330) Fixes to: Linter and Prettier script (Issue 368/fix-eslint-prettier-windows #369) The sendMessageTTL function (Issue 365/update-sendMessageTTL #366) Others: Documentation updates (Updates ROADMAP.md to conform to other doc styling #374) Co-authored-by: Tim Standen <[email protected]> --------- Co-authored-by: veganedge <[email protected]> Co-authored-by: Scott Brown <[email protected]> Co-authored-by: Andy <[email protected]> Co-authored-by: Russell Fraze <[email protected]> Co-authored-by: Andy Williams <[email protected]> Co-authored-by: Tim Standen <[email protected]> Co-authored-by: Jared Krajewski <[email protected]> Co-authored-by: Tim Standen <[email protected]> Co-authored-by: brancwill <[email protected]> Co-authored-by: Radhey Chitroda <[email protected]> Co-authored-by: Hauvert <[email protected]> Co-authored-by: tryngagear <[email protected]> Co-authored-by: jlaurentpdx <[email protected]>
- Loading branch information
1 parent
6164b57
commit 5cb26fe
Showing
26 changed files
with
704 additions
and
544 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// React Imports | ||
import React from 'react'; | ||
// Material UI Imports | ||
import Button from '@mui/material/Button'; | ||
import Stack from '@mui/material/Stack'; | ||
import Typography from '@mui/material/Typography'; | ||
|
||
/** | ||
* @typedef {import("../../typedefs.js").footerProps} footerProps | ||
*/ | ||
|
||
/** | ||
* The RenderCallToActionSection component renders information about policy, | ||
* terms and conditions, and the site to Code for PDX | ||
* | ||
* @param {footerProps} Props - The props for footer sub-component | ||
* @returns {React.JSX.Element} The RenderCallToActionSection component | ||
*/ | ||
const RenderCallToActionSection = ({ isReallySmallScreen }) => ( | ||
<Stack width={isReallySmallScreen ? 1 : 3 / 5} alignItems="center" justifyContent="center"> | ||
<Typography variant="h5" color="tertiary.main"> | ||
Want to partner with PASS? | ||
</Typography> | ||
<Typography variant="body1" color="#fff" sx={{ width: 3 / 4 }}> | ||
If your organization is interested in partnering with PASS and would like to discuss further, | ||
contact us below. | ||
</Typography> | ||
<Button variant="contained" color="secondary" sx={{ my: '1rem', width: 1 / 2 }}> | ||
Proposal | ||
</Button> | ||
</Stack> | ||
); | ||
|
||
export default RenderCallToActionSection; |
Oops, something went wrong.