Select Git revision
UserDAO.java
-
Yannis Devos authoredYannis Devos authored
IndexPage.vue 1.20 KiB
<template>
<q-page class="row items-center q-pt-xl">
<HomeView
id="accueil"
first="CLEMENT"
second="FRANCKELEMON"
accent="Alternant en 3ème année de BUT Informatique chez Nextoo"
:src="`${process.env.BASE_URL}/public/images/profil.png`"
class="q-mb-xl" />
<div id="presentation" class="col-12" />
<PresentationView class="q-mb-xl" />
<div id="formations" class="col-12" />
<FormationView />
<div id="experiences" class="col-12" />
<ExperienceView />
<div id="competences" class="col-12" />
<ComptenceView />
<div id="projets" class="col-12" />
<ProjetView />
<div id="contacts" class="col-12" />
<ContactView />
</q-page>
</template>
<script setup lang="ts">
import PresentationView from 'components/PresentationView.vue'
import HomeView from 'components/HomeView.vue'
import FormationView from 'components/FormationView.vue'
import ComptenceView from 'components/ComptenceView.vue'
import ContactView from 'components/ContactView.vue'
import ProjetView from 'components/ProjetView.vue'
import ExperienceView from 'components/ExperienceView.vue'
</script>
<style scoped>
.q-page-container {
padding-top: 0 !important;
}
</style>