- Backend: Add Content-Type: application/json to all JSON API endpoints - Android TV: Reduce HomeViewModel memory usage (load 4 categories only, limit 15 items each) - Android TV: Prevent OOM kill on TV devices with limited RAM - Updated APK, docker-compose, health endpoint to v3.9.2
25 lines
661 B
TypeScript
25 lines
661 B
TypeScript
import type { Theme } from '../../types/Theme';
|
|
import { Layout } from './Layout';
|
|
import { Hero } from '../../components/Hero';
|
|
import { MovieGrid } from './MovieGrid';
|
|
import { Card } from './Card';
|
|
import { WatchPage } from './WatchPage';
|
|
import { NetflixHome } from './NetflixHome'; // Added
|
|
|
|
export const netflixTheme: Theme = {
|
|
name: 'netflix',
|
|
label: 'Netflix',
|
|
colors: {
|
|
background: '#141414',
|
|
primary: '#E50914',
|
|
text: '#FFFFFF',
|
|
},
|
|
components: {
|
|
Layout,
|
|
Hero,
|
|
MovieGrid,
|
|
Card,
|
|
WatchPage,
|
|
Home: NetflixHome, // Added as Home
|
|
},
|
|
};
|