From 31410525bf8a78d6352bb759ae8a8d7633d3edc3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 1 Jun 2023 19:50:17 +0200 Subject: [PATCH] Created the software.jsx --- .../pages/tools/linux/InstallSoftware/software.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 client/src/pages/tools/linux/InstallSoftware/software.jsx diff --git a/client/src/pages/tools/linux/InstallSoftware/software.jsx b/client/src/pages/tools/linux/InstallSoftware/software.jsx new file mode 100644 index 0000000..f052553 --- /dev/null +++ b/client/src/pages/tools/linux/InstallSoftware/software.jsx @@ -0,0 +1,14 @@ +import MySpeedImage from "./images/myspeed.webp"; +import {faBox, faFolder} from "@fortawesome/free-solid-svg-icons"; + +export default [ + { + name: "MySpeed", + icon: MySpeedImage, + configuration: [ + {type: "input", id: "folder", text: "Ort", icon: faFolder, value: "/opt/myspeed"}, + {type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Entwicklung"], + value: "Stabil"} + ] + } +]; \ No newline at end of file