From ab603e699706eba91e450d78c644346fd0ffbba7 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sat, 11 Jan 2025 10:09:53 +0100 Subject: [PATCH] feat: add centralised plugin info --- app/(auth)/(tabs)/(home)/intro/page.tsx | 70 ++++++++++++++++++------- 1 file changed, 50 insertions(+), 20 deletions(-) diff --git a/app/(auth)/(tabs)/(home)/intro/page.tsx b/app/(auth)/(tabs)/(home)/intro/page.tsx index cef9db31..e23015a5 100644 --- a/app/(auth)/(tabs)/(home)/intro/page.tsx +++ b/app/(auth)/(tabs)/(home)/intro/page.tsx @@ -5,7 +5,7 @@ import { Feather, Ionicons } from "@expo/vector-icons"; import { Image } from "expo-image"; import { useFocusEffect, useRouter } from "expo-router"; import { useCallback } from "react"; -import { TouchableOpacity, View } from "react-native"; +import { Linking, TouchableOpacity, View } from "react-native"; export default function page() { const router = useRouter(); @@ -17,7 +17,7 @@ export default function page() { ); return ( - + Welcome to Streamyfin @@ -85,25 +85,55 @@ export default function page() { + + + + + + Centralised Settings Plugin + + Configure settings from a centralised location on your Jellyfin + server. All client settings for all users will be synced + automatically.{" "} + { + Linking.openURL( + "https://github.com/streamyfin/jellyfin-plugin-streamyfin" + ); + }} + > + Read more + + + + + + + + { + router.back(); + router.push("/settings"); + }} + className="mt-4" + > + Go to settings + - - - { - router.back(); - router.push("/settings"); - }} - className="mt-4" - > - Go to settings - ); }