diff --git a/docs/img/edit_approve_audit.png b/docs/img/edit_approve_audit.png
new file mode 100644
index 0000000..6cfcce0
Binary files /dev/null and b/docs/img/edit_approve_audit.png differ
diff --git a/docs/index.md b/docs/index.md
index c1f0a37..a7e8ead 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,3 +1,10 @@
+---
+layout: article
+title: DC Docs
+description: The Data Controller for SASĀ® enables users to self serve their data changes, and for data owners to retain control over those updates by reviewing and approving them
+og_title: Data Controller Documentation
+og_image: /img/edit_approve_audit.png
+---
# Data Controller Documentation
## Overview
@@ -35,5 +42,4 @@ Data Controller is regularly updated with new features. If you see something th
* Dynamic [cell dropdown](/dynamic-cell-dropdown)
-
-
+
diff --git a/docs/video/management_overrides.mp4 b/docs/video/management_overrides.mp4
new file mode 100644
index 0000000..074ce83
Binary files /dev/null and b/docs/video/management_overrides.mp4 differ
diff --git a/theme/main.html b/theme/main.html
index 15c3e37..b7bbc58 100644
--- a/theme/main.html
+++ b/theme/main.html
@@ -13,7 +13,14 @@
{% set title = title ~ " - " ~ page.title | striptags %}
{% endif %}
-
+
+{% if page and page.meta and page.meta.og_title %}
+ {% set og_title = page.meta.og_title %}
+{% elif page %}
+ {% set og_title = 'Data Controller Documentation' %}
+{% endif %}
+
+
{% if page and page.meta and page.meta.og_image %}
{% set og_image = page.meta.og_image %}