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
-
);
}