From 1eee181e219dfd993d396ac3169e7aad3dd285eb Mon Sep 17 00:00:00 2001 From: Factiven Date: Sun, 16 Jul 2023 22:35:39 +0700 Subject: Update v3.6.4 - Added Manga page with a working tracker for AniList user - Added schedule component to home page - Added disqus comment section so you can fight on each other (not recommended) - Added /id and /en route for english and indonesian subs (id route still work in progress) --- components/manga/mobile/topBar.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 components/manga/mobile/topBar.js (limited to 'components/manga/mobile/topBar.js') diff --git a/components/manga/mobile/topBar.js b/components/manga/mobile/topBar.js new file mode 100644 index 0000000..7290e05 --- /dev/null +++ b/components/manga/mobile/topBar.js @@ -0,0 +1,22 @@ +import { ArrowLeftIcon } from "@heroicons/react/24/outline"; +import Link from "next/link"; + +export default function TopBar({ info }) { + return ( +
+ {info && ( + <> + + +

back

+ + {/*

moopa

*/} +

{info.title.romaji}

+ + )} +
+ ); +} -- cgit v1.2.3