diff --git a/src/app.js b/src/app.js
index 2deba80..733f084 100644
--- a/src/app.js
+++ b/src/app.js
@@ -7,10 +7,7 @@ import {
MarkdownView,
NotFoundView,
RegistrationView,
- SpeakersView,
TravelView,
- FaqsView,
- AgendaView
} from './views'
import { Header, Footer } from '@components/layout'
@@ -26,11 +23,6 @@ const menuOptions = [
label: 'Registration',
view: ,
},
- // {
- // path: '/agenda',
- // label: 'Agenda',
- // view: ,
- // },
{
path: '/travel',
label: 'Travel Info',
@@ -40,17 +32,7 @@ const menuOptions = [
path: '/cfa',
label: 'Calls for Action',
view: ,
- },
- // {
- // path: '/speakers',
- // label: 'Speakers',
- // view: ,
- // },
- // {
- // path: '/faqs',
- // label: 'FAQs',
- // view: ,
- // },
+ }
]
//
diff --git a/src/components/layout/footer.js b/src/components/layout/footer.js
index 19d67b8..ff5d33c 100644
--- a/src/components/layout/footer.js
+++ b/src/components/layout/footer.js
@@ -1,9 +1,8 @@
-import { Divider, List, ListItem, Sheet, Stack, Typography } from '@mui/joy'
+import { List, ListItem, Sheet, Stack, Typography } from '@mui/joy'
import { KnitLogo } from '@components/brand'
import { Link } from '@components/link'
import {
Container,
- SIZES,
} from '@components/layout'
export const Footer = () => {
diff --git a/src/components/link/link.js b/src/components/link/link.js
index ad89c3b..ebe2892 100644
--- a/src/components/link/link.js
+++ b/src/components/link/link.js
@@ -1,4 +1,3 @@
-import { Fragment } from 'react'
import PropTypes from 'prop-types'
import { Link as ReactLink } from 'react-router-dom'
import { NavLink as ReactNavLink } from 'react-router-dom'
diff --git a/src/components/markdown/button.js b/src/components/markdown/button.js
index e81cfb7..04531cd 100644
--- a/src/components/markdown/button.js
+++ b/src/components/markdown/button.js
@@ -1,8 +1,7 @@
import { Button } from '@mui/joy'
import { Link } from '@components/link'
-import { ExternalLinkIcon } from '../link'
-/* eslint-disable-next-line no-unused-vars */
-export const button = ({ node, linkto, children }) => {
+
+export const button = ({ linkto, children }) => {
if (typeof children !== 'string') {
return
}
diff --git a/src/components/menu/drawer-menu.js b/src/components/menu/drawer-menu.js
index 825fe3b..36310cd 100644
--- a/src/components/menu/drawer-menu.js
+++ b/src/components/menu/drawer-menu.js
@@ -2,7 +2,6 @@ import { Fragment, useState } from 'react'
import { Box, Divider, Drawer, IconButton, ModalClose, Stack } from '@mui/joy'
import { Menu as MenuIcon } from 'react-feather'
import { Link } from '@components/link'
-import { KnitLogo } from '@components/brand'
import { menuPropTypes } from './menu'
import numberlessKnitLogo from '@images/knit-logo-numberless-dark.png'