···13import { DiscoverNavigation } from "./components/DiscoverNavigation";
14import type { FeaturedMedia } from "./components/FeaturedCarousel";
15import { LazyMediaCarousel } from "./components/LazyMediaCarousel";
016import { ScrollToTopButton } from "./components/ScrollToTopButton";
1718export function DiscoverContent() {
···48 // Render Movies content with lazy loading
49 const renderMoviesContent = () => {
50 const carousels = [];
00000000005152 // Movie Recommendations - only show if there are movie progress items
53 if (movieProgressItems.length > 0) {
···136 // Render TV Shows content with lazy loading
137 const renderTVShowsContent = () => {
138 const carousels = [];
0000000000139140 // TV Show Recommendations - only show if there are TV show progress items
141 if (tvProgressItems.length > 0) {
···13import { DiscoverNavigation } from "./components/DiscoverNavigation";
14import type { FeaturedMedia } from "./components/FeaturedCarousel";
15import { LazyMediaCarousel } from "./components/LazyMediaCarousel";
16+import { PersonalRecommendationsCarousel } from "./components/PersonalRecommendationsCarousel";
17import { ScrollToTopButton } from "./components/ScrollToTopButton";
1819export function DiscoverContent() {
···49 // Render Movies content with lazy loading
50 const renderMoviesContent = () => {
51 const carousels = [];
52+53+ // For You - personal recommendations from watch history, progress, and bookmarks
54+ carousels.push(
55+ <PersonalRecommendationsCarousel
56+ key="movie-for-you"
57+ isTVShow={false}
58+ carouselRefs={carouselRefs}
59+ onShowDetails={handleShowDetails}
60+ />,
61+ );
6263 // Movie Recommendations - only show if there are movie progress items
64 if (movieProgressItems.length > 0) {
···147 // Render TV Shows content with lazy loading
148 const renderTVShowsContent = () => {
149 const carousels = [];
150+151+ // For You - personal recommendations from watch history, progress, and bookmarks
152+ carousels.push(
153+ <PersonalRecommendationsCarousel
154+ key="tv-for-you"
155+ isTVShow
156+ carouselRefs={carouselRefs}
157+ onShowDetails={handleShowDetails}
158+ />,
159+ );
160161 // TV Show Recommendations - only show if there are TV show progress items
162 if (tvProgressItems.length > 0) {