diff --git a/src/components/player/atoms/settings/Downloads.tsx b/src/components/player/atoms/settings/Downloads.tsx index 4c7b3361..11458f84 100644 --- a/src/components/player/atoms/settings/Downloads.tsx +++ b/src/components/player/atoms/settings/Downloads.tsx @@ -15,46 +15,26 @@ export function DownloadView({ id }: { id: string }) { Download -
+
+ router.navigate("/download/ios")}> + Downloading on iOS + + router.navigate("/download/android")} + > + Downloading on Android + + router.navigate("/download/pc")}> + Downloading on PC + + + + Downloads are taken directly from the provider. movie-web does not have control over how the downloads are provided. - - To download on iOS, click{" "} - - - - , then{" "} - - Save to Files - - {" "} - . All that's left to do now is to pick a nice and cozy folder - for your video! - - - To download on Android,{" "} - tap and hold on the video, then - select save. - - - On PC, click the{" "} - - three dots - - {" "} - and click download. - + + router.navigate("/download")}> + Download / Android + + + + To download on Android, tap and hold{" "} + on the video, then select save. + + + + ); +} + +function PCExplanationView({ id }: { id: string }) { + const router = useOverlayRouter(id); + + return ( + <> + router.navigate("/download")}> + Download / PC + + + + On PC, click the{" "} + + three dots + + {" "} + and click download. + + + + ); +} + +function IOSExplanationView({ id }: { id: string }) { + const router = useOverlayRouter(id); + + return ( + <> + router.navigate("/download")}> + Download / iOS + + + + To download on iOS, click{" "} + + + + , then{" "} + + Save to Files + + {" "} + . All that's left to do now is to pick a nice and cozy folder for + your video! + + + + ); +} + export function DownloadRoutes({ id }: { id: string }) { return ( <> - + - + + + + + + + + + + + + + + + + ); }