diff options
Diffstat (limited to 'client/src/components/NavBar.tsx')
-rw-r--r-- | client/src/components/NavBar.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/components/NavBar.tsx b/client/src/components/NavBar.tsx index 5b22e27..af95d2b 100644 --- a/client/src/components/NavBar.tsx +++ b/client/src/components/NavBar.tsx @@ -4,6 +4,7 @@ import { AppBar, Toolbar, Typography } from '@mui/material'; import useMediaQuery from '@mui/material/useMediaQuery'; import Desktop from './Desktop'; import Mobile from './Mobile'; +import { LettersPullUp } from './LettersPullUp'; function NavBar() { const isMobile = useMediaQuery('(max-width: 768px)'); @@ -18,7 +19,7 @@ function NavBar() { color="inherit" sx={{ textDecoration: 'none' }} > - Madison & Michael + <LettersPullUp text="Madison & Michael" /> </Typography> {isMobile ? <Mobile /> : <Desktop />} </Toolbar> |