diff --git a/src/App.tsx b/src/App.tsx index 116a0aa4..f645ff8d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -127,7 +127,7 @@ export default function App() { - + @@ -139,10 +139,10 @@ export default function App() { - + - + diff --git a/src/components/navbar/NavBar.tsx b/src/components/navbar/NavBar.tsx index 07cb3b2f..f0e12336 100644 --- a/src/components/navbar/NavBar.tsx +++ b/src/components/navbar/NavBar.tsx @@ -50,15 +50,15 @@ const navbarItems: Array = [ title: 'Updates', IconComponent: NewReleasesIcon, }, { - path: '/manga/extensions', + path: '/extensions', title: 'Extensions', IconComponent: ExtensionIcon, }, { - path: '/manga/sources', + path: '/sources', title: 'Sources', IconComponent: ExploreIcon, }, { - path: '/manga/downloads', + path: '/downloads', title: 'Manga Download Queue', IconComponent: GetAppIcon, }, { diff --git a/src/screens/manga/Browse.tsx b/src/screens/manga/Browse.tsx new file mode 100644 index 00000000..416f17d0 --- /dev/null +++ b/src/screens/manga/Browse.tsx @@ -0,0 +1,12 @@ +/* + * Copyright (C) Contributors to the Suwayomi project + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ + +import React, { useContext, useEffect, useState } from 'react'; + +export default function Browse() { + return

fek

; +}