diff --git a/app/showDetails.tsx b/app/showDetails.tsx
index 9e5cac5..9ff5cc6 100644
--- a/app/showDetails.tsx
+++ b/app/showDetails.tsx
@@ -1,5 +1,6 @@
import StackHeader from "@/components/ui/StackHeader";
import { useLocalSearchParams, router } from "expo-router";
+import ShowInfo from "@/components/ui/ShowInfo";
import React from "react";
import {
Dimensions,
@@ -34,13 +35,11 @@ export default function ShowDetails() {
}}
style={styles.showImage}
/>
-
- 10 Staffeln
-
- 442 Teilnehmer
-
- RTL +
-
+
{
+ return (
+
+ {seasons} Staffeln
+
+ {participants} Teilnehmer
+
+ {streamingService}
+
+ );
+};
+
+const styles = StyleSheet.create({
+ showMainInfoSection: {
+ width: "auto",
+ height: "auto",
+ alignSelf: "center",
+ flexDirection: "row",
+ justifyContent: "center",
+ alignItems: "center",
+ bottom: 25,
+ },
+ showInfoText: {
+ color: "hsl(0, 0%, 80%)",
+ fontSize: 14,
+ },
+ dot: {
+ width: 4,
+ height: 4,
+ borderRadius: 3,
+ backgroundColor: "hsl(0, 0%, 80%)",
+ marginHorizontal: 7,
+ marginTop: 2,
+ },
+});
+
+export default ShowInfo;