diff --git a/web/components/nav/nav-bar.tsx b/web/components/nav/nav-bar.tsx
index d7ed3329..e4e65dd6 100644
--- a/web/components/nav/nav-bar.tsx
+++ b/web/components/nav/nav-bar.tsx
@@ -61,43 +61,3 @@ export function BottomNavBar() {
)
}
-
-export function NavOptions(props: {
- user: User | null | undefined
- assertUser?: 'signed-in' | 'signed-out'
- themeClasses?: string
-}) {
- const { user, assertUser, themeClasses } = props
- const showSignedIn = assertUser === 'signed-in' || !!user
- const showSignedOut =
- !showSignedIn && (assertUser === 'signed-out' || user === null)
-
- return (
- <>
- {showSignedOut && (
-
-
- About
-
-
- )}
-
- {showSignedOut && (
- <>
-
- >
- )}
- {showSignedIn && }
- >
- )
-}