From d4d98c0d7f236303fc749746863c5827f2db440f Mon Sep 17 00:00:00 2001 From: Arthur Belkhayat Date: Thu, 31 Aug 2023 13:23:21 +0200 Subject: [PATCH] fix: retour design page presentation --- src/assets/img/presentation/dora-logo.svg | 15 ++------ .../carousel/carousel.component.html | 37 +++++++++++++++---- .../pages/presentation/presentation.page.ts | 2 +- 3 files changed, 35 insertions(+), 19 deletions(-) diff --git a/src/assets/img/presentation/dora-logo.svg b/src/assets/img/presentation/dora-logo.svg index 93a27534..102f26fb 100644 --- a/src/assets/img/presentation/dora-logo.svg +++ b/src/assets/img/presentation/dora-logo.svg @@ -1,12 +1,5 @@ - - - - - - - - - - - + + + + diff --git a/src/features/presentation/components/carousel/carousel.component.html b/src/features/presentation/components/carousel/carousel.component.html index 1efc025e..6e4db67b 100644 --- a/src/features/presentation/components/carousel/carousel.component.html +++ b/src/features/presentation/components/carousel/carousel.component.html @@ -30,9 +30,13 @@

{{ slides.titre }}

{{ slides.text }}

- + Accéder à DORA - +
@@ -40,17 +44,36 @@
{{ slides.titre }}

Nous référençons les lieux d'inclusion numérique qui ont renseigné leurs données au format du + style="color: white; font-weight: bold; text-decoration: underline" + target="_blank" + rel="noopener noreferrer"> standard de données des lieux d'inclusion numérique établi par la - Mednum + + Mednum + , - Datactivist + + Datactivist + et - l'ANCT + + l'ANCT + .

diff --git a/src/features/presentation/pages/presentation/presentation.page.ts b/src/features/presentation/pages/presentation/presentation.page.ts index d368b4fb..c65acab4 100644 --- a/src/features/presentation/pages/presentation/presentation.page.ts +++ b/src/features/presentation/pages/presentation/presentation.page.ts @@ -46,5 +46,5 @@ export class PresentationPage { this._currentSlide$.next(this._currentSlide$.value + 1 > 3 ? 0 : this._currentSlide$.value + 1); }; - public slidesBackground: string[] = ['bg-orientation', 'bg-visibilite', 'bg-centralisation', 'bg-actualisation']; + public slidesBackground: string[] = ['bg-orientation', 'bg-centralisation', 'bg-actualisation', 'bg-visibilite']; }