diff --git a/app/login.tsx b/app/login.tsx index 420e47dd..d312ce58 100644 --- a/app/login.tsx +++ b/app/login.tsx @@ -5,6 +5,7 @@ import { apiAtom, useJellyfin } from "@/providers/JellyfinProvider"; import { Ionicons } from "@expo/vector-icons"; import { PublicSystemInfo } from "@jellyfin/sdk/lib/generated-client"; import { getSystemApi } from "@jellyfin/sdk/lib/utils/api"; +import { Image } from "expo-image"; import { useLocalSearchParams } from "expo-router"; import { useAtom } from "jotai"; import React, { useEffect, useState } from "react"; @@ -129,7 +130,7 @@ const Login: React.FC = () => { if (error.name === "AbortError") { console.log(`Request to ${protocol}${url} timed out`); } else { - console.error(`Error checking ${protocol}${url}:`, error); + console.log(`Error checking ${protocol}${url}:`, error); } } } @@ -195,16 +196,18 @@ const Login: React.FC = () => { behavior={Platform.OS === "ios" ? "padding" : "height"} style={{ flex: 1, height: "100%" }} > - - - + + {serverName || "Streamyfin"} - - Server: {api.basePath} - + + URL + + {api.basePath} + + @@ -285,9 +288,17 @@ const Login: React.FC = () => { behavior={Platform.OS === "ios" ? "padding" : "height"} style={{ flex: 1 }} > - - - + + + Streamyfin Connect to your Jellyfin server @@ -303,14 +314,16 @@ const Login: React.FC = () => { maxLength={500} /> - + + + diff --git a/assets/images/StreamyFinFinal.png b/assets/images/StreamyFinFinal.png new file mode 100644 index 00000000..5800cf38 Binary files /dev/null and b/assets/images/StreamyFinFinal.png differ