Skip to content

Commit

Permalink
Add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Carolinedanslesnuages committed Sep 26, 2022
1 parent ba106dd commit 9bfc2d9
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 4 deletions.
Binary file added frontend/src/assets/logo_dnum.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/logo_gendarmerie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/logo_police.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/logo_scae.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 59 additions & 4 deletions frontend/src/views/text_content/AboutTextContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,72 @@
à laquelle l'arme appartient.</p>
<p class="fr-callout"><span class="fr-fi-alert-fill" aria-hidden="true"></span> Basegun ne prend pas encore en compte l'identification des armes non létales (factices,
à air comprimé, à blanc ou neutralisées).</p>

<div class="container-img">
<div v-for="img in imgs" :key="img.id">
<img class="img" :src="img.src" :alt="img.alt">

</div>
</div>
</div>
</template>

<script>
export default {
name: "AboutTextContent"
};
<script>
import logoDnum from '@/assets/logo_dnum.jpg'
import logoSCAE from'@/assets/logo_scae.png'
import logoPN from'@/assets/logo_police.png'
import logoGendarmerie from'@/assets/logo_gendarmerie.png'
export default {
name: "AboutTextContent",
data () {
return {
imgs: [
{
alt: "Logo Ministère de l'interieur",
id: 'logo_dnum',
src: logoDnum
},
{
alt: "Logo SCAE",
id: 'logo_scae',
src: logoSCAE,
},
{
alt: "Logo Police Nationale",
id: 'logo_pn',
src: logoPN
},
{
alt: "Logo Gendarmerie",
id: 'logo_gendarmerie',
src: logoGendarmerie
}
]
}
}
}
</script>

<style scoped>
.title-space {
margin-top: 20px;
}
.container-img {
display: flex;
justify-content: center;
flex-direction: row;
}
.img {
margin: 2em;
display: flex;
width: 6em;
height: auto;
}
</style>

0 comments on commit 9bfc2d9

Please sign in to comment.