summaryrefslogtreecommitdiff
path: root/src/components/Bar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Bar.tsx')
-rw-r--r--src/components/Bar.tsx39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/components/Bar.tsx b/src/components/Bar.tsx
deleted file mode 100644
index ce3db43..0000000
--- a/src/components/Bar.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Link } from 'react-router-dom';
-import AppBar from '@mui/material/AppBar';
-import Box from '@mui/material/Box';
-import Button from '@mui/material/Button';
-import Toolbar from '@mui/material/Toolbar';
-import Typography from '@mui/material/Typography';
-
-function Bar() {
- const pages = [
- { name: 'Schedule', to: '/schedule'},
- { name: 'RSVP', to: '/rsvp' },
- { name: 'Registry', to: '/registry' }
- ];
-
- return (
- <AppBar position="relative">
- <Toolbar>
- <Typography
- variant="h4"
- component={Link}
- to="/"
- color="inherit"
- sx={{ textDecoration: 'none' }}
- >
- Wedding
- </Typography>
- <Box sx={{ marginLeft: 'auto' }}>
- {pages.map((page) => (
- <Button component={Link} to={page.to} key={page.name} color="inherit">
- {page.name}
- </Button>
- ))}
- </Box>
- </Toolbar>
- </AppBar>
- );
-}
-
-export default Bar;