+ {title}
+ {description &&
{description}
}
+
+ );
+}
diff --git a/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx b/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx
new file mode 100644
index 000000000..86ab880d3
--- /dev/null
+++ b/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx
@@ -0,0 +1,84 @@
+import { Button, IconButton, Input, Select, Switch } from '@chakra-ui/react';
+import { IoAdd } from '@react-icons/all-files/io5/IoAdd';
+import { IoTrash } from '@react-icons/all-files/io5/IoTrash';
+
+import * as Panel from '../PanelUtils';
+
+import { cycles } from './IntegrationsPanel';
+
+import style from './IntegrationsPanel.module.css';
+
+const demoIntegrations = [
+ { id: 1, enabled: true, cycle: 'onLoad', message: '/ontime/scene/1' },
+ { id: 2, enabled: true, cycle: 'onLoad', message: '/ontime/scene/2' },
+ { id: 3, enabled: true, cycle: 'onLoad', message: '/ontime/scene/3' },
+ { id: 4, enabled: true, cycle: 'onLoad', message: '/ontime/scene/4' },
+];
+
+export default function HttpIntegrations() {
+ return (
+