diff --git a/site/src/routes/index.html b/site/src/routes/index.html
index 9cb7be24f8..cf26a7c0be 100644
--- a/site/src/routes/index.html
+++ b/site/src/routes/index.html
@@ -86,8 +86,26 @@
}
.box a {
+ position: relative;
text-align: right;
margin-top: auto;
+ padding: 0 1.2em 0 0;
+ }
+
+ .box a:hover {
+ color: white;
+ text-decoration: underline;
+ }
+
+ .box a::after {
+ content: '';
+ position: absolute;
+ display: block;
+ right: 0;
+ top: 0.4em;
+ width: 1em;
+ height: 1em;
+ background: url(/icons/arrow-right.svg);
}
h6 {
diff --git a/site/static/icons/arrow-right.svg b/site/static/icons/arrow-right.svg
new file mode 100644
index 0000000000..5229286a59
--- /dev/null
+++ b/site/static/icons/arrow-right.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file