generated from RENCI/react-starter
-
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.
Merge branch 'main' of https://github.com/RENCI/APSViz-UI-V3 into iss…
…ue-310-secure-token
- Loading branch information
Showing
8 changed files
with
79 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import React, { Fragment } from "react"; | ||
import { Sheet, Stack, Box, Link } from '@mui/joy'; | ||
import crc_logo from "@images/CRC_LOGO.jpg"; | ||
import nuu_logo from "@images/NCU_LOGO.jpg"; | ||
import twi_logo from "@images/TWI_LOGO.jpg"; | ||
import uga_logo from "@images/UGA_LOGO.jpg"; | ||
import renci_logo from "@images/renci-logo.png"; | ||
|
||
export const Acknowledgements = () => { | ||
|
||
return( | ||
<Fragment> | ||
<Sheet | ||
variant="soft" | ||
sx={{ | ||
position: 'absolute', | ||
bottom: 0, left: 75, | ||
height: '50vh', | ||
zIndex: 900, | ||
maxHeight: '25px', | ||
overflow: 'hidden', | ||
p: 0, | ||
transition: 'max-height 250ms, filter 250ms, background-color 1000ms 500ms', | ||
display: 'flex', | ||
flexDirection: 'row', | ||
background: 'white', | ||
}}> | ||
<Stack alignItems="left" spacing={1} direction="row"> | ||
<Link href="https://www.coastalresiliencecenter.org/" underline="none"> | ||
<Box | ||
component="img" | ||
height="18px" | ||
sx={{ pb: .25, pl: .25 }} | ||
alt="Coastal Resilience Center" | ||
src={ crc_logo }> | ||
</Box> | ||
</Link> | ||
<Link href="https://renci.org/research/earth-data-science-research/" underline="none"> | ||
<Box | ||
component="img" | ||
height="18px" | ||
alt="Renaissance Computing Institute" | ||
src={ renci_logo } | ||
/> | ||
</Link> | ||
<Link href="https://thewaterinstitute.org/" underline="none"> | ||
<Box | ||
component="img" | ||
height="18px" | ||
alt="The Water Institute" | ||
src={ twi_logo } | ||
/> | ||
</Link> | ||
<Link href="https://ccee.ncsu.edu/research/ewc/" underline="none"> | ||
<Box | ||
component="img" | ||
height="18px" | ||
alt="North Carolina State University" | ||
src={ nuu_logo } | ||
/> | ||
</Link> | ||
<Link href="https://engineering.uga.edu/team_member/matthew-v-bilskie/" underline="none"> | ||
<Box | ||
component="img" | ||
height="18px" | ||
sx={{ pr: .5 }} | ||
alt="University of Georgia" | ||
src={ uga_logo } | ||
/> | ||
</Link> | ||
</Stack> | ||
</Sheet> | ||
</Fragment> | ||
); | ||
}; |
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 @@ | ||
export * from './acknowledgements'; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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