diff options
| author | Factiven <[email protected]> | 2023-04-14 16:26:42 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-14 16:26:42 +0700 |
| commit | a4c2377011eddb580aa6df8dd56127259381e01b (patch) | |
| tree | c1129d4d2e0fe25739d0aac7bd2fbf6a58474d8c /components/hero/content.js | |
| parent | Update index.js (diff) | |
| download | moopa-a4c2377011eddb580aa6df8dd56127259381e01b.tar.xz moopa-a4c2377011eddb580aa6df8dd56127259381e01b.zip | |
Update 7th
Diffstat (limited to 'components/hero/content.js')
| -rw-r--r-- | components/hero/content.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/components/hero/content.js b/components/hero/content.js index b7515d2..96f49fd 100644 --- a/components/hero/content.js +++ b/components/hero/content.js @@ -52,13 +52,17 @@ export default function Content({ ids, section, data }) { > <Link href={`/anime/${anime.id}`} - className="hover:scale-105 duration-300 ease-in-out" + className="hover:scale-105 group relative duration-300 ease-in-out" > + {/* <div className="fixed top-0 z-40 bg-black invisible group-hover:visible"> + {anime.title.romaji || anime.title.english} + </div> */} <Image draggable={false} src={ anime.image || anime.coverImage?.extraLarge || + anime.coverImage?.large || "https://cdn.discordapp.com/attachments/986579286397964290/1058415946945003611/gray_pfp.png" } alt={anime.title.romaji || anime.title.english} @@ -68,6 +72,7 @@ export default function Content({ ids, section, data }) { blurDataURL={ anime.image || anime.coverImage?.extraLarge || + anime.coverImage?.large || "https://cdn.discordapp.com/attachments/986579286397964290/1058415946945003611/gray_pfp.png" } className="z-20 h-[192px] w-[135px] object-cover lg:h-[265px] lg:w-[185px] rounded-md" |