- 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
14 lines
425 B
TypeScript
14 lines
425 B
TypeScript
import { Layout } from './Layout';
|
|
import { HomeContent } from '../../components/HomeContent';
|
|
import { SettingsPanel } from '../../components/SettingsPanel';
|
|
|
|
export const NetflixHome = () => {
|
|
return (
|
|
<Layout>
|
|
<div className="w-full min-h-screen bg-black">
|
|
<HomeContent topPadding="pt-8" />
|
|
</div>
|
|
<SettingsPanel />
|
|
</Layout>
|
|
);
|
|
};
|