- )}
- {[
- { label: "Japanese", value: info?.Japanese },
- { label: "Synonyms", value: info?.Synonyms },
- { label: "Aired", value: info?.Aired },
- { label: "Premiered", value: info?.Premiered },
- { label: "Duration", value: info?.Duration },
- { label: "Status", value: info?.Status },
- { label: "MAL Score", value: info?.["MAL Score"] },
- ].map(({ label, value }, index) => (
-
-
Genres:
-
- {info.Genres.map((genre, index) => (
-
+
+ {[
+ { label: "Japanese", value: info?.Japanese },
+ { label: "Synonyms", value: info?.Synonyms },
+ { label: "Aired", value: info?.Aired },
+ { label: "Premiered", value: info?.Premiered },
+ { label: "Duration", value: info?.Duration },
+ { label: "Status", value: info?.Status },
+ { label: "MAL Score", value: info?.["MAL Score"] },
+ ].map((item, index) => (
+
- {genre}
-
+ label={item.label}
+ value={item.value}
+ isProducer={false}
+ />
+ ))}
+
+
+ {/* Genres */}
+ {info?.Genres && (
+
+
Genres
+
+ {info.Genres.map((genre, index) => (
+
+ {genre}
+
+ ))}
+
+
+ )}
+
+ {/* Studios & Producers */}
+
+ {[
+ { label: "Studios", value: info?.Studios },
+ { label: "Producers", value: info?.Producers },
+ ].map((item, index) => (
+
))}
- )}
- {[
- { label: "Studios", value: info?.Studios },
- { label: "Producers", value: info?.Producers },
- ].map(({ label, value }, index) => (
-
- ))}
-
- {`${website_name} is the best site to watch `}
- {title}
- {` SUB online, or you can even watch `}
- {title}
- {` DUB in HD quality.`}
-
+
+ {/* Watch Button */}
+ {animeInfo?.animeInfo?.Status?.toLowerCase() !== "not-yet-aired" ? (
+
+
+
Watch Now
+
+ ) : (
+
+ Not released
+
+ )}
+
+ {/* Overview */}
+ {info?.Overview && (
+
+ {info.Overview.length > 270 ? (
+ <>
+ {isFull
+ ? info.Overview
+ : `${info.Overview.slice(0, 270)}...`}
+
+ >
+ ) : (
+ info.Overview
+ )}
+
+ )}
+
+ {/* Share Section */}
+
+

+
+
Share Anime
+
with your friends
+
+
+