diff options
-rw-r--r-- | templates/documentation.html | 5 | ||||
-rw-r--r-- | templates/download.html | 6 | ||||
-rw-r--r-- | templates/index.html | 5 | ||||
-rw-r--r-- | templates/partials/shared/community_survey.html | 14 |
4 files changed, 30 insertions, 0 deletions
diff --git a/templates/documentation.html b/templates/documentation.html index fd7889f..c835175 100644 --- a/templates/documentation.html +++ b/templates/documentation.html @@ -12,6 +12,11 @@ <div class="grid grid-cols-1 xl:grid-cols-5"> {% include "partials/doc/global_toc.html" %} <div class="col-span-full xl:col-span-3" style="min-height:85vh;"> + + <div class="pt-8"> + {% include "partials/shared/community_survey.html" %} + </div> + <article class="box my-12 px-6 lg:px-8 xl:px-12"> <div class="flex flex-col mb-10 bg-gray-100 rounded-r shadow-sm w-full xl:w-max"> <div class="flex flex-col border-l-4 border-garage-orange py-2 px-4 relative"> diff --git a/templates/download.html b/templates/download.html index 72c56d7..a0780c9 100644 --- a/templates/download.html +++ b/templates/download.html @@ -12,7 +12,13 @@ Downloads | {{ config.title }} <div class="h-8 w-8 bg-gradient-to-bl from-gray-50 via-gray-50 to-gray-100 -rotate-45 transform origin-top-left shadow"></div> </div> </div> + <div class="mx-auto max-w-7xl px-4"> + + <div class="pt-16"> + {% include "partials/shared/community_survey.html" %} + </div> + <div id="releases-container" class="py-24 space-y-20"> <div id="docker-images" class="space-y-4"> <h2 class="text-garage-gray text-xl font-semibold">Deploy with Docker</h2> diff --git a/templates/index.html b/templates/index.html index 019ac1b..82bbf74 100644 --- a/templates/index.html +++ b/templates/index.html @@ -28,6 +28,11 @@ <span class="inline text-sm md:text-base">Get Started</span> </a> </div> + + <div class="pt-4"> + {% include "partials/shared/community_survey.html" %} + </div> + <div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-x-32 py-12"> <a href="{{config.base_url}}/documentation/connect/websites/" 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"> diff --git a/templates/partials/shared/community_survey.html b/templates/partials/shared/community_survey.html new file mode 100644 index 0000000..acc89a5 --- /dev/null +++ b/templates/partials/shared/community_survey.html @@ -0,0 +1,14 @@ +<div class="max-w-4xl mx-auto"> + <div class="bg-teal-100 border-t-4 border-teal-500 rounded-b text-teal-900 px-4 py-3 shadow-md" role="alert"> + <div class="flex"> + <div class="py-1"><svg class="fill-current h-6 w-6 text-teal-500 mr-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M2.93 17.07A10 10 0 1 1 17.07 2.93 10 10 0 0 1 2.93 17.07zm12.73-1.41A8 8 0 1 0 4.34 4.34a8 8 0 0 0 11.32 11.32zM9 11V9h2v6H9v-4zm0-6h2v2H9V5z"/></svg></div> + <div> + <p class="font-bold">Garage pre-1.0 community survey</p> + <p class="text-sm"> As part of our plans for the release of Garage v1.0, we are launching a survey to gather feedback from Garage users and potential users on all fronts, in order to improve Garage's reliability, user experience, and suitability for various application domains.</p> + <p> + <a href="https://pad.deuxfleurs.fr/form/#/2/form/view/bGZkUeZ5wxOuTSlP3nRJeTbCQlwdqUpF3ggN6vGqRds/" class="text-garage-orange font-bold hover:underline">Answer the survey here</a> + </p> + </div> + </div> + </div> +</div> |