···1313import { DiscoverNavigation } from "./components/DiscoverNavigation";
1414import type { FeaturedMedia } from "./components/FeaturedCarousel";
1515import { LazyMediaCarousel } from "./components/LazyMediaCarousel";
1616+import { PersonalRecommendationsCarousel } from "./components/PersonalRecommendationsCarousel";
1617import { ScrollToTopButton } from "./components/ScrollToTopButton";
17181819export function DiscoverContent() {
···4849 // Render Movies content with lazy loading
4950 const renderMoviesContent = () => {
5051 const carousels = [];
5252+5353+ // For You - personal recommendations from watch history, progress, and bookmarks
5454+ carousels.push(
5555+ <PersonalRecommendationsCarousel
5656+ key="movie-for-you"
5757+ isTVShow={false}
5858+ carouselRefs={carouselRefs}
5959+ onShowDetails={handleShowDetails}
6060+ />,
6161+ );
51625263 // Movie Recommendations - only show if there are movie progress items
5364 if (movieProgressItems.length > 0) {
···136147 // Render TV Shows content with lazy loading
137148 const renderTVShowsContent = () => {
138149 const carousels = [];
150150+151151+ // For You - personal recommendations from watch history, progress, and bookmarks
152152+ carousels.push(
153153+ <PersonalRecommendationsCarousel
154154+ key="tv-for-you"
155155+ isTVShow
156156+ carouselRefs={carouselRefs}
157157+ onShowDetails={handleShowDetails}
158158+ />,
159159+ );
139160140161 // TV Show Recommendations - only show if there are TV show progress items
141162 if (tvProgressItems.length > 0) {