- {racks.map(
- (rack) =>
- activeTab === rack.id && (
-
-
{rack.name} Inhalte
-
-
-
- | Slot |
- Bezeichnung |
-
- Isolationsgrenzwert
- |
-
- Schleifengrenzwert
- |
- Filterzeit |
- Aktionen |
-
-
-
- {Array.from({ length: 8 }, (_, index) => (
-
- |
- Slot {index + 1}
- |
-
- Beispielbezeichnung
- |
- 0.5 MOhm |
- 10 kOhm |
- 5 sek. |
-
-
- |
-
- ))}
-
-
-
- )
- )}
+
+
Kabelüberwachung
+
+ {/* Hier verwenden wir die Kue705FO-Komponente */}
+
+
+
+
+
+
+
+
);
diff --git a/components/modules/Kue705FO.jsx b/components/modules/Kue705FO.jsx
new file mode 100644
index 0000000..e92df54
--- /dev/null
+++ b/components/modules/Kue705FO.jsx
@@ -0,0 +1,35 @@
+import React from "react";
+import { Icon } from "@iconify/react"; // Für Iconify Icons
+
+function Kue705FO({ isolationswert, schleifenwiderstand, modulName, version }) {
+ return (
+
+ {/* Hauptkörper - Linker Bereich */}
+
+
+ {/* Innenrahmen weiß */}
+
+
+ {/* Rechte Spalte */}
+
+
+ {/* Oberer kleiner Block in der rechten Spalte */}
+
+
+ {/* Text KÜ705-FO */}
+
+ KÜ705-FO
+
+
+ {/* Unterer Bereich - Schleifenwiderstand und Messkurve */}
+
+ {/* Messkurve Button */}
+
+ Messkurve
+
+
+
+ );
+}
+
+export default Kue705FO;
diff --git a/public/images/KUE_Steckplatz.svg b/public/images/KUE_Steckplatz.svg
new file mode 100644
index 0000000..d3a2fe7
--- /dev/null
+++ b/public/images/KUE_Steckplatz.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
index 4d2f9fe..2ca94c6 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -6,7 +6,11 @@ module.exports = {
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
- extend: {},
+ extend: {
+ colors: {
+ "littwin-blue": "#00AEEF", // Definiere die Farbe mit dem gewünschten Hex-Wert
+ },
+ },
},
plugins: [],
};