diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 000000000..801d3502d
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,41 @@
+# Contributing to Security Onion - DRAFT
+
+### Questions, suggestions, and general comments
+* Security Onion uses GitHub's [Discussions](https://github.com/Security-Onion-Solutions/securityonion/discussions) to provide a forum where the community and developers can interact as well as ask and answer questions.
+
+### Reporting a bug
+* The primary place to report unexpected behavior or possible bugs is the repo's [Discussions forum](https://github.com/Security-Onion-Solutions/securityonion/discussions).
+
+* **If you are familiar with the current version of Security Onion and are confident you've discovered a bug**, first ensure there is not already an issue present by searching the open [issues](https://github.com/Security-Onion-Solutions/securityonion/issues). If there is, a thumbs up :+1: is a great way to show this bug is affecting you too.
+
+* If an issue doesn't exist, [open a new one](https://github.com/Security-Onion-Solutions/securityonion/issues/new), following the directions in the issue template. These boil down to including:
+ * **System information** and how Security Onion was installed
+ * **Log files** relevant to the bug report
+ * **Reproduction steps**
+
+### Contributing code
+
+* **All commits must be signed** with a valid key that has been added to your GitHub account. The commits should have all the "**Verified**" tag when viewed on GitHub as shown below:
+
+
+
+* If an issue does not already exist for the bug or feature for which you are submitting a pull request, [create one](https://github.com/Security-Onion-Solutions/securityonion/issues/new) with the relevant prefix. (**`FIX:`** for bug fixes, **`FEATURE:`** for new features.)
+
+* **Pull requests should be opened against the `dev` branch of this repo**, and should clearly describe the problem and solution.
+
+* Be sure you have tested your changes and are confident they will not break other parts of the product.
+
+* See this document's [code styling and conventions section](#code-style-and-conventions) below to be sure your PR fits our code requirements prior to submitting.
+
+
+
+### Code style and conventions
+* **Keep code [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself)**. For example, Bash code used by multiple scripts will likely best be added to [`so-common`](salt/common/tools/sbin/so-common).
+
+* All new Bash code should pass [ShellCheck](https://www.shellcheck.net/) analysis. Where errors can be *safely* [ignored](https://github.com/koalaman/shellcheck/wiki/Ignore), the relevant disable directive should be accompanied by a brief explanation as to why the error is being ignored.
+
+* **Ensure all YAML (this includes Salt states and pillars) is properly formatted**. The spec for YAML v1.2 can be found [here](https://yaml.org/spec/1.2/spec.html), however there are numerous online resources with simpler descriptions of its formatting rules.
+
+* **Python** - TBD
+
+* **Golang** - TBD
diff --git a/README.md b/README.md
index 2bf903fa2..bc784dd22 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,10 @@ Security Onion 2.3.52 is here!
## Screenshots
Alerts
-
+
Hunt
-
+
### Release Notes
diff --git a/screenshots/alerts-1.png b/assets/images/screenshots/alerts-1.png
similarity index 100%
rename from screenshots/alerts-1.png
rename to assets/images/screenshots/alerts-1.png
diff --git a/screenshots/hunt-1.png b/assets/images/screenshots/hunt-1.png
similarity index 100%
rename from screenshots/hunt-1.png
rename to assets/images/screenshots/hunt-1.png
diff --git a/assets/images/verified-commit-1.png b/assets/images/verified-commit-1.png
new file mode 100644
index 000000000..62363b99b
Binary files /dev/null and b/assets/images/verified-commit-1.png differ