diff --git a/web/components/nav/nav-bar.tsx b/web/components/nav/nav-bar.tsx index a935173a..680b8946 100644 --- a/web/components/nav/nav-bar.tsx +++ b/web/components/nav/nav-bar.tsx @@ -33,7 +33,7 @@ function getNavigation() { const signedOutNavigation = [ { name: 'Home', href: '/', icon: HomeIcon }, - { name: 'Explore', href: '/markets', icon: SearchIcon }, + { name: 'Explore', href: '/home', icon: SearchIcon }, ] // From https://codepen.io/chris__sev/pen/QWGvYbL diff --git a/web/components/nav/sidebar.tsx b/web/components/nav/sidebar.tsx index dfb7805e..6c4addc4 100644 --- a/web/components/nav/sidebar.tsx +++ b/web/components/nav/sidebar.tsx @@ -99,8 +99,8 @@ function getMoreNavigation(user?: User | null) { } const signedOutNavigation = [ - { name: 'Home', href: '/home', icon: HomeIcon }, - { name: 'Explore', href: '/markets', icon: SearchIcon }, + { name: 'Home', href: '/', icon: HomeIcon }, + { name: 'Explore', href: '/home', icon: SearchIcon }, { name: 'About', href: 'https://docs.manifold.markets/$how-to', diff --git a/web/pages/index.tsx b/web/pages/index.tsx index 01c24fcf..4013f57a 100644 --- a/web/pages/index.tsx +++ b/web/pages/index.tsx @@ -30,12 +30,6 @@ export default function Home(props: { hotContracts: Contract[] }) {
- View{' '}
-