Skip to content

Commit

Permalink
Updated customer footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
chrtorres committed Apr 9, 2024
1 parent 550620b commit f98a4af
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions frontend/src/components/ReadySetCyber/RSCFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,26 @@ import {
Link,
Typography,
Stack,
BottomNavigation
} from '@mui/material';
import cisaFooterLogo from './assets/cisa_footer_logo.png'; // Import the logo
import cisaFooterLogo from './assets/cisa_footer_logo.png';
import { links } from './links';

export const RSCFooter: React.FC = () => {
return (
<Box
sx={{
width: '100%',
height: '100vh',
display: 'flex',
justifyContent: 'center',
zIndex: 1,
height: 'auto',
backgroundColor: '#005285',
paddingTop: '2em',
paddingBottom: '2em'
paddingTop: '1em',
paddingBottom: '1em'
}}
>
<Box
sx={{
width: '80%',
height: 'auto',
maxWidth: '80vw',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center'
Expand Down Expand Up @@ -62,9 +59,16 @@ export const RSCFooter: React.FC = () => {
</Typography>
</Stack>
</Stack>
<Grid container spacing={2}>
<Grid container
spacing={2}
sx={{
textAlign: {
xs: 'center',
sm: 'left'
}
}}>
{links.map((link, index) => (
<Grid item xs={3} key={index}>
<Grid item xs={4} sm={3} key={index}>
<Link
style={{
color: 'white',
Expand Down

0 comments on commit f98a4af

Please sign in to comment.