+
+ {integration.name} Integration
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/server/pages/integrations/Menu.js b/server/pages/integrations/Menu.js
new file mode 100644
index 00000000..186d4cfd
--- /dev/null
+++ b/server/pages/integrations/Menu.js
@@ -0,0 +1,48 @@
+// @flow
+import * as React from 'react';
+import styled from 'styled-components';
+import { map, groupBy } from 'lodash';
+
+export default function IntegrationMenu({ integrations }: { integrations: * }) {
+ const categories = groupBy(integrations, i => i.category);
+
+ return (
+