diff --git a/rate_your_experience.info b/rate_your_experience.info
index d0c4c59..cb3cf66 100644
--- a/rate_your_experience.info
+++ b/rate_your_experience.info
@@ -1 +1,4 @@
 name = Rate your experience
+description = Demonstrates providing the overall experience of the site
+package = Custom
+core = 7.x
diff --git a/rate_your_experience.module b/rate_your_experience.module
new file mode 100644
index 0000000..0f22a37
--- /dev/null
+++ b/rate_your_experience.module
@@ -0,0 +1,40 @@
+<?php
+/**
+ * @file
+ * Module file for rate_your_experience.
+ */
+
+/**
+ * Implements hook_block_info().
+ */
+function rate_your_experience_block_info() {
+  $blocks = array();
+  $blocks['rate_your_experience'] = array(
+    'info' => t('Rate your experience'),
+    'status' => 1,
+    'region' => 'footer',
+  );
+  return $blocks;
+}
+/**
+ * Implements hook_block_view().
+ */
+function rate_your_experience_block_view($delta = '') {
+  $block = array();
+  switch ($delta) {
+    case 'rate_your_experience':
+      $block['subject'] = '';
+      $block['content'] = _rate_your_experience_display();
+      break;
+  }
+  return $block;
+}
+
+/**
+ * @return string
+ * Callback for block content display
+ */
+function _rate_your_experience_display() {
+  $output = l(t('Rate your experience'), 'home', array('attributes' => array('class' => array('rate-your-experience'))));
+  return $output;
+}
