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/hero/genres.js | 69 ----------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 components/hero/genres.js (limited to 'components/hero/genres.js') diff --git a/components/hero/genres.js b/components/hero/genres.js deleted file mode 100644 index 1c8a475..0000000 --- a/components/hero/genres.js +++ /dev/null @@ -1,69 +0,0 @@ -import Image from "next/image"; -import { ChevronRightIcon } from "@heroicons/react/24/outline"; -import Link from "next/link"; - -const g = [ - { - name: "Action", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20958-HuFJyr54Mmir.jpg", - }, - { - name: "Comedy", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx21202-TfzXuWQf2oLQ.png", - }, - { - name: "Horror", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx127230-FlochcFsyoF4.png", - }, - { - name: "Romance", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx124080-h8EPH92nyRfS.jpg", - }, - { - name: "Music", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx130003-5Y8rYzg982sq.png", - }, - { - name: "Sports", - img: "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20464-eW7ZDBOcn74a.png", - }, -]; - -export default function Genres() { - return ( -
-
-

Top Genres

- -
-
-
-
-
- {g.map((a, index) => ( - -
-

- {a.name} -

-
- genres images - - ))} -
-
-
-
-
- ); -} -- cgit v1.2.3