diff --git a/beacon.module b/beacon.module
index fca2ba0..5f805f5 100644
--- a/beacon.module
+++ b/beacon.module
@@ -1,5 +1,8 @@
 <?php
 
+use Drupal\Core\Routing\RouteMatchInterface;
+
+
 // Drupal 7
 function beacon_page_alter(&$page) {
   // Don't use drupal_add_js as no easy way to make it async
@@ -25,3 +28,20 @@ function beacon_page_attachments(array &$page) {
   }
   $page['#attached']['library'][] = 'beacon/beacon';
 }
+
+
+/**
+ * Implements hook_help().
+ */
+function beyond_beacon_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    // Main module help for the beyond_beacon module.
+    case 'help.page.beyond_beacon':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('Installs the Beacon Javascript on all pages on your site and allows for tracking of listing search data, and tracking conversions.') . '</p>';
+      return $output;
+
+    default:
+  }
+}
