From 79ad7c4c4ebf55db5fe528d03c455417db78e78d Mon Sep 17 00:00:00 2001 From: Tejas Panchal Date: Sun, 1 Mar 2026 15:58:41 +0530 Subject: [PATCH] seasons --- src/pages/watch/Watch.jsx | 55 ++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/src/pages/watch/Watch.jsx b/src/pages/watch/Watch.jsx index 1824eab..bc50039 100644 --- a/src/pages/watch/Watch.jsx +++ b/src/pages/watch/Watch.jsx @@ -352,28 +352,6 @@ export default function Watch() { - {/* Seasons (Mobile only) */} - {seasons?.length > 0 && ( -
-

More Seasons

-
- {seasons.map((season, idx) => ( - - {season.season} -
-
-

{season.season}

-
- - ))} -
-
- )} - {/* Related Anime (Mobile only) */} {!animeInfoLoading && animeInfo?.related_data?.length > 0 && (
@@ -406,10 +384,39 @@ export default function Watch() {
)}
- - + + {/* Sections */} +
+ {seasons?.length > 0 && ( +
+

More Seasons

+
+ {seasons.map((season, index) => ( + + {season.season} +
')`, + backgroundSize: '3px 3px' + }} + /> +
+
+

{season.season}

+
+ + ))} +
+
+ )} +
);