diff options
author | sptaule <lecas83@gmail.com> | 2022-02-01 12:12:59 +0100 |
---|---|---|
committer | sptaule <lecas83@gmail.com> | 2022-02-01 12:15:27 +0100 |
commit | 880c689cf48b61cbb922cfae0c2d87ed8b6c2458 (patch) | |
tree | 99cb93fe6653b1bd42e7400fa559ee2ff9b8c3bd /templates/index.html | |
parent | 78648613afc25714d5b1b104a89f0778b8b7f682 (diff) | |
download | garagehq.deuxfleurs.fr-880c689cf48b61cbb922cfae0c2d87ed8b6c2458.tar.gz garagehq.deuxfleurs.fr-880c689cf48b61cbb922cfae0c2d87ed8b6c2458.zip |
Fix footer margins, add CTA section, update main navigation
Diffstat (limited to 'templates/index.html')
-rwxr-xr-x | templates/index.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index 55060ef..d534179 100755 --- a/templates/index.html +++ b/templates/index.html @@ -4,10 +4,26 @@ <section class="section" id="home-section"> <div> - <div class="flex flex-col items-center justify-center py-12 px-12 xl:px-0"> + <div class="flex flex-col items-center justify-center py-12 px-8 md:px-12 xl:px-0"> <h1 class="hidden">{{config.extra.organization.name}}</h1> <img src="{{ config.extra.organization.logo }}" width="220px" alt="{{config.extra.organization.name}}"/> <p class="text-gray-500 leading-10 pt-4 text-xl text-center">{{ config.extra.organization.description }}</p> + <div class="flex items-center justify-center space-x-2 md:space-x-4 py-4"> + <a + href="https://garagehq.deuxfleurs.fr/_releases.html" + title="Garage releases" + class="group flex items-center justify-center space-x-1 font-semibold shadow hover:shadow-lg px-4 py-3 rounded text-white transition-all duration-500 bg-gradient-to-tl from-garage-orange via-orange-500 to-orange-300 bg-size-200 bg-pos-0 hover:bg-pos-100"> + <svg class="w-6 h-6 animate-pulse" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"></path></svg> + <span class="inline text-sm md:text-base">Download</span> + </a> + <a + href="/documentation/quick-start/" + title="Get started with the documentation" + class="group flex items-center justify-center space-x-1 font-semibold shadow hover:shadow-lg px-4 py-3 rounded text-white transition-all duration-500 bg-gradient-to-tl from-gray-400 via-gray-500 to-gray-400 bg-size-200 bg-pos-0 hover:bg-pos-100"> + <svg class="w-6 h-6 animate-pulse" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path></svg> + <span class="inline text-sm md:text-base">Get Started</span> + </a> + </div> <div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-x-32 py-12"> <div class="group flex flex-col items-center justify-center p-2"> <img src="{{ get_url(path='images/host.png') }}" class="transform group-hover:translate-y-2 transition duration-500"> |