Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve hompage heading, CTA and message #794

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 25 additions & 13 deletions confiture-web-app/src/pages/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const steps = [
<template>
<PageMeta
title="Ara - Réaliser des audits d’accessibilité"
description="Ara est l’outil qui vous permet de réaliser, simplement et rapidement, des audits d'accessibilité numérique."
description="Ara est l’outil qui vous permet de réaliser, simplement et rapidement, des audits daccessibilité numérique."
/>

<div
Expand All @@ -80,21 +80,18 @@ const steps = [
</div>

<section class="fr-mt-9w">
<h1 ref="headingRef">Faire un audit d’accessibilité avec Ara</h1>
<h1 ref="headingRef">Je réalise un audit d’accessibilité avec Ara</h1>
<p class="fr-text--lg">
Ara nécessite une bonne connaissance de la méthode technique du
<abbr
title="référentiel général d'amélioration de
l'accessibilité"
title="référentiel général damélioration de
laccessibilité"
>RGAA</abbr
>.
</p>
<p>
<strong>Ce n’est pas un outil d’audit automatique.</strong>
</p>
<p>
Basé sur la dernière version du référentiel général d'amélioration de
l'accessibilité (RGAA 4.1) vous pouvez&nbsp;:
Basé sur la dernière version du référentiel général d’amélioration de
l’accessibilité (RGAA 4.1) vous pouvez&nbsp;:
</p>
<ul>
<li>Commencer par un audit rapide (25 critères)</li>
Expand All @@ -105,11 +102,20 @@ const steps = [
</li>
</ul>

<RouterLink :to="{ name: 'create-audit' }" class="fr-btn fr-mt-5w fr-mb-7w">
Je démarre un audit
</RouterLink>
<div class="cta-with-message fr-mt-5w fr-mb-7w">
<p class="fr-mb-0">
<span
class="fr-icon-information-line fr-mr-1v"
aria-hidden="true"
></span>
<strong>Ara n’audite pas automatiquement votre site</strong>
</p>
<RouterLink :to="{ name: 'create-audit' }" class="fr-btn">
Je réalise un audit
</RouterLink>
</div>

<h2 class="fr-h5">Quelles étapes m'attendent ?</h2>
<h2 class="fr-h5">Quelles étapes mattendent ?</h2>
<div class="fr-grid-row fr-grid-row--gutters">
<div v-for="step in steps" :key="step.title" class="fr-col">
<div class="fr-p-4w step-wrapper">
Expand All @@ -127,6 +133,12 @@ const steps = [
</template>

<style scoped>
.cta-with-message {
display: flex;
flex-direction: column-reverse;
gap: 0.75rem;
}

.steps {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
Expand Down
Loading