Skip to content

Commit 4b25a62

Browse files
feat(email): add email icon and into readme (#556)
1 parent 0060542 commit 4b25a62

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ A website for Online Master's of Science (OMS) course reviews at Georgia Tech.
88

99
## Resources
1010

11+
[Contact our team!](gt.omshub@gmail.com)
12+
1113
### OMSHub
1214

1315
- Production - https://omshub.org

src/components/NavBar.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { TNullable } from '@globals/types';
88
import Brightness4Icon from '@mui/icons-material/Brightness4';
99
import Brightness7Icon from '@mui/icons-material/Brightness7';
1010
import GitHubIcon from '@mui/icons-material/GitHub';
11+
import MailIcon from '@mui/icons-material/Mail';
1112
import {
1213
IconButton,
1314
AppBar,
@@ -138,6 +139,20 @@ export const NavBar = ({ ...props }: NavBarProps) => {
138139
<GitHubIcon />
139140
</Link>
140141
</Tooltip>
142+
<Tooltip arrow title={`Contact OMSHub`}>
143+
<Link
144+
variant='button'
145+
color='inherit'
146+
href={`mailto:gt.omshub@gmail.com`}
147+
target='_blank'
148+
sx={{
149+
my: 1,
150+
mx: 1.5,
151+
}}
152+
>
153+
<MailIcon />
154+
</Link>
155+
</Tooltip>
141156
</Box>
142157
<MobileMenu {...navigationMenuItems} />
143158
<Box sx={{ flexGrow: 0, display: { xs: 'flex', md: 'none' }, m: 0 }}>

0 commit comments

Comments
 (0)