diff --git a/frontend/app/assets/img/live-sessions.png b/frontend/app/assets/img/live-sessions.png
new file mode 100644
index 000000000..85ecaae86
Binary files /dev/null and b/frontend/app/assets/img/live-sessions.png differ
diff --git a/frontend/app/components/BugFinder/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/BugFinder/LiveSessionList/LiveSessionList.tsx
index b82e80139..7c60216c8 100644
--- a/frontend/app/components/BugFinder/LiveSessionList/LiveSessionList.tsx
+++ b/frontend/app/components/BugFinder/LiveSessionList/LiveSessionList.tsx
@@ -35,8 +35,8 @@ function LiveSessionList(props: Props) {
}
show={ !loading && list && list.size === 0}
>
diff --git a/frontend/app/components/Client/Integrations/AssistDoc/AssistDoc.js b/frontend/app/components/Client/Integrations/AssistDoc/AssistDoc.js
new file mode 100644
index 000000000..01d3e7ad2
--- /dev/null
+++ b/frontend/app/components/Client/Integrations/AssistDoc/AssistDoc.js
@@ -0,0 +1,66 @@
+import Highlight from 'react-highlight'
+import ToggleContent from 'Shared/ToggleContent'
+import DocLink from 'Shared/DocLink/DocLink';
+
+const AssistDoc = (props) => {
+ return (
+
+
OpenReplay Assist allows you to support your users by seeing their live screen and instantly hopping on call (WebRTC) with them without requiring any 3rd-party screen sharing software.
+
+
Installation
+
+ {`npm i @openreplay/tracker-assist`}
+
+
+
Usage
+
Initialize the tracker then load the @openreplay/tracker-assist plugin.
+
+
+
Usage
+
+ {`import Tracker from '@openreplay/tracker';
+import trackerAssist from '@openreplay/tracker-assist';
+const tracker = new Tracker({
+ projectKey: PROJECT_KEY,
+});
+tracker.start();
+tracker.use(trackerAssist(options)); // check the list of available options below`}
+
+ }
+ second={
+
+ {`import OpenReplay from '@openreplay/tracker/cjs';
+import trackerFetch from '@openreplay/tracker-assist/cjs';
+const tracker = new OpenReplay({
+ projectKey: PROJECT_KEY
+});
+const trackerAssist = tracker.use(trackerAssist(options)); // check the list of available options below
+//...
+function MyApp() {
+ useEffect(() => { // use componentDidMount in case of React Class Component
+ tracker.start();
+ }, [])
+//...
+}`}
+
+ }
+ />
+
+