diff --git a/_layouts/downloads.html b/_layouts/downloads.html
index b946461cf..c924d19c7 100644
--- a/_layouts/downloads.html
+++ b/_layouts/downloads.html
@@ -11,10 +11,13 @@ <h1>Wild<strong>Fly</strong> {{ latestRelease.version_shortname }} is now availa
         <a href="https://github.com/wildfly/wildfly/releases/download/{{latestRelease.version}}/wildfly-{{latestRelease.version}}.zip" class="button-cta">Download the zip</a>
         <a href="https://github.com/wildfly/wildfly/releases/download/{{latestRelease.version}}/wildfly-{{latestRelease.version}}.tar.gz" class="button-cta">Download the tgz</a>
       </div> 
-      <div class="page-subtitle">
+      <div class="page-eap">
         <h4>The technology behind Wild<strong>Fly</strong> is also available in <a href="https://www.redhat.com/en/technologies/jboss-middleware/application-platform" target="_blank">JBoss Enterprise Application Platform</a>. JBoss EAP is a hardened enterprise subscription with Red Hat’s world-class support, long multi-year maintenance cycles, and exclusive content. <a href="https://developers.redhat.com/register" target="_blank">Sign-up with Red Hat</a> to download a no-cost 1-year development license.</h4>
         <a href="https://developers.redhat.com/products/eap/download/" class="button-cta secondary" target="_blank">Download Red Hat JBoss EAP</a>
       </div>
+      <div class="page-nightlies">
+        <h5>Nightly snapshot builds from the main WildFly source branch are also available for <a href="https://ci.wildfly.org/repository/download/WF_Nightly/latest.lastFinished/wildfly-latest-SNAPSHOT.zip?guest=1">standard WildFly</a> and <a href="https://ci.wildfly.org/repository/download/WF_WildFlyPreviewNightly/latest.lastFinished/wildfly-preview-latest-SNAPSHOT.zip?guest=1">WildFly Preview</a>.</h5>
+      </div>
       {% for versionId in site.data.releases %}
       <div class="grid-wrapper version-row mobile-fullwidth">
         <div class="grid__item width-2-12 version-id">
diff --git a/_sass/layouts/downloads.scss b/_sass/layouts/downloads.scss
index 10bf5be98..b2f5cfd0b 100644
--- a/_sass/layouts/downloads.scss
+++ b/_sass/layouts/downloads.scss
@@ -18,12 +18,12 @@
       }
     }
   }
-  .page-subtitle {
+  .page-eap {
     text-align: center;
     border-top: 2px solid white;
     border-bottom: 2px solid white;
     padding: 0 0 2rem 0;
-    margin: 4rem 0;
+    margin: 3rem 0;
     h4 {
       text-align: left;
       font-weight: 200;
@@ -31,6 +31,21 @@
       a { font-weight: 200; }
       strong { color: $teal; }
     }
+    h5 {
+      font-weight: 200;
+      color: $teal;
+      a { font-weight: 200; }
+      strong { color: $teal; }
+    }
+  }
+  .page-nightlies {
+    text-align: center;
+    h5 {
+      font-weight: 200;
+      color: $teal;
+      a { font-weight: 200; }
+      strong { color: $teal; }
+    }
   }
 }