summaryrefslogtreecommitdiff
path: root/client/src/components/NavBar.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@mac-mini.local>2025-01-17 16:40:48 -0600
committerMichael Hunteman <michael@mac-mini.local>2025-01-17 16:40:48 -0600
commit3d79a18ea4a3f9c85f1be230d711f7bfe1dc18d5 (patch)
tree54b4f3add1a5269e67b3088e4a448ad003b0310a /client/src/components/NavBar.tsx
parent00a9fc7b2d20eeacbd957fef47685fdfdb5d606f (diff)
Animate titleHEADmaster
Diffstat (limited to 'client/src/components/NavBar.tsx')
-rw-r--r--client/src/components/NavBar.tsx3
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>