-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ♻️ remove swiper component and add page instead
- Loading branch information
Showing
7 changed files
with
80 additions
and
208 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<template> | ||
<div class="text-center relative top-1/6 <md:top-4"> | ||
<div> | ||
<img | ||
src="@/assets/basegun_green.png" | ||
alt="" | ||
class="homepage-logo" | ||
> | ||
<div class="homepage-content"> | ||
<ul class="homepage-ul fr-text--sm"> | ||
<li class="mb-2"> | ||
Basegun est une application <span class="homepage-green-highlight">prototype</span> en cours de développement par le Ministère de l’Intérieur et des Outre-Mer. | ||
</li> | ||
<li class="mb-2"> | ||
A ce jour, Basegun <span class="homepage-green-highlight">permet</span> d'identifier uniquement des <span class="homepage-green-highlight">armes à feu létales</span> et des<span class="homepage-green-highlight"> armes factices type airsoft</span>. | ||
</li> | ||
<li class="mb-2"> | ||
Basegun propose également de les <span class="homepage-green-highlight">mettre en sécurité</span> grâce à des <span class="homepage-green-highlight">tutoriels personnalisés</span>. | ||
</li> | ||
</ul> | ||
</div> | ||
<router-link | ||
v-slot="{navigate}" | ||
:to="{name:'Start'}" | ||
> | ||
<button | ||
id="agree-button" | ||
class="fr-btn fr-btn--sm" | ||
@click="navigate()" | ||
> | ||
J'ai compris | ||
</button> | ||
</router-link> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.homepage { | ||
width: 100%; | ||
height: 100%; | ||
position: static; | ||
} | ||
.homepage-logo { | ||
width: 40%; | ||
} | ||
.homepage-content { | ||
width: 75%; | ||
margin: 1rem auto; | ||
text-align: center; | ||
} | ||
.homepage-ul { | ||
list-style-position: inside; | ||
text-indent: -1em; | ||
padding-left: 1em; | ||
display: inline-block; | ||
text-align: left; | ||
max-width: 700px; | ||
margin-bottom: 12px !important; | ||
} | ||
.homepage-green-highlight { | ||
font-weight: bold; | ||
color: #00c7c8; | ||
} | ||
#agree-button { | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
</style> |