From ed43e3b777ccef7a0808c3f56ad6c17183332066 Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Thu, 28 Mar 2019 08:34:35 +0100
Subject: [PATCH] Added missing image on home page header

---
 src/views/Home.vue | 47 ++++++++++++++++++++++++++--------------------
 1 file changed, 27 insertions(+), 20 deletions(-)

diff --git a/src/views/Home.vue b/src/views/Home.vue
index fe2b216c..636599ef 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -2,26 +2,33 @@
   <div>
     <div class="row">
       <section>
-        <h2>
-          <translate
-            translate-context="Content/Home/Header"
-          >A social platform to enjoy and share music</translate>
-        </h2>
-        <p>
-          <translate
-            translate-context="Content/Home/Paragraph"
-            :translate-params="{activeUsers: 300}"
-          >
-            Funkwhale is a community-driven project that let you listen and share music and audio content
-            whithin a vibrant network of %{ activeUsers } users.
-          </translate>
-        </p>
-        <a class="pure-button pure-button-primary" href="#get-started">
-          <translate translate-context="Content/Home/Button.Label">Get started!</translate>
-        </a>
-        <a class="pure-button" href="#learn-more">
-          <translate translate-context="Content/Home/Button.Label">Learn more…</translate>
-        </a>
+        <div class="feature pure-g">
+          <div class="content pure-u-1-2">
+            <h2>
+              <translate
+                translate-context="Content/Home/Header"
+              >A social platform to enjoy and share music</translate>
+            </h2>
+            <p>
+              <translate
+                translate-context="Content/Home/Paragraph"
+                :translate-params="{activeUsers: 300}"
+              >
+                Funkwhale is a community-driven project that let you listen and share music and audio content
+                whithin a vibrant network of %{ activeUsers } users.
+              </translate>
+            </p>
+            <a class="pure-button pure-button-primary" href="#get-started">
+              <translate translate-context="Content/Home/Button.Label">Get started!</translate>
+            </a>
+            <a class="pure-button" href="#learn-more">
+              <translate translate-context="Content/Home/Button.Label">Learn more…</translate>
+            </a>
+          </div>
+          <div class="image pure-u-1-2">
+            <img src="https://placekitten.com/g/700/400">
+          </div>
+        </div>
       </section>
     </div>
     <div class="row" id="learn-more">
-- 
GitLab