Skip to content

Commit 33fe0f7

Browse files
authored
Merge pull request #4 from Jgarnes/main
Updated Forms using MUI
2 parents 1a2b8dc + 614dfad commit 33fe0f7

File tree

6 files changed

+339
-143
lines changed

6 files changed

+339
-143
lines changed

package-lock.json

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@emotion/react": "^11.11.4",
1717
"@emotion/styled": "^11.11.0",
1818
"@mui/icons-material": "^5.15.12",
19-
"@mui/material": "^5.15.12",
19+
"@mui/material": "^5.15.14",
2020
"firebase": "^10.9.0",
2121
"git": "^0.1.5",
2222
"node": "^21.6.2",

src/components/login/copyRight.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import Typography, { TypographyProps } from '@mui/material/Typography';
2+
import Link from '@mui/material/Link';
3+
4+
function Copyright(props: TypographyProps) {
5+
return (
6+
<Typography variant="body2" color="text.secondary" align="center" {...props}>
7+
{'Copyright © '}
8+
<Link color="inherit" href="https://mui.com/">
9+
https://agilecoderquest.chrisuribe.com/
10+
</Link>{' '}
11+
{new Date().getFullYear()}
12+
{'.'}
13+
</Typography>
14+
);
15+
}
16+
17+
export default Copyright;

0 commit comments

Comments
 (0)