| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- <template>
- <PageMeta
- title="Olivier Massot - Fullstack developer"
- description=""
- />
- <div class="banner">
- <h1>
- {{ $t('Fullstack developer') }}
- </h1>
- <h2>
- {{ $t('x_years_experience', { years: XP_YEARS }) }}
- </h2>
- <div class="introduction">
- <div>
- {{ $t('intro_part_1') }}
- </div>
- <div>
- {{ $t('intro_part_2') }}
- </div>
- <div>
- {{ $t('intro_part_3') }}
- </div>
- <div v-html="$t('intro_part_4')" />
- <div>
- {{ $t('intro_part_5') }}
- </div>
- <div class="logos mt-3">
- <BannerLogo
- href="https://github.com/olinox14"
- img="/images/logos/github_large_dark.png"
- :alt="i18n.t('Find me on Github')"
- />
- <BannerLogo
- href="https://stackoverflow.com/users/4279120/olinox14"
- img="/images/logos/stackoverflow.svg"
- :alt="i18n.t('Find me on Stackoverflow')"
- class="so-logo"
- />
- <BannerLogo
- href="https://www.linkedin.com/in/olivier-massot-60b87b181"
- img="/images/logos/linkedin.png"
- :alt="i18n.t('Find me on LinkedIn')"
- />
- <BannerLogo
- href="https://www.codingame.com/profile/75dcc329745def530c02ddb4485f22235683081"
- img="/images/logos/codingame.svg"
- :alt="i18n.t('Find me on Codingame')"
- />
- </div>
- </div>
- </div>
- <div class="badges">
- <v-container>
- <v-row>
- <v-col cols="4">
- <div class="badges-section">
- <h2>Languages</h2>
- <Badge
- title="Python"
- img="/images/logos/python.svg"
- :subtitle="$t('x_years', { years: 10 })"
- details="J'ai travaillé sur de très nombreux projets avec Python, depuis la version 2.7 jusqu'à la version 3.12: scripts variés, extensions QGis, projets web, librairies, utilitaires ou applications buraeautiques."
- />
- <Badge title="PHP" img="/images/logos/php.svg" :subtitle="$t('x_years', { years: 4 })" />
- <Badge title="Node.js" img="/images/logos/node-light.svg" :subtitle="$t('x_years', { years: 5 })" />
- <Badge title="C#" img="/images/logos/csharp.png" :subtitle="$t('x_years', { years: 2 })" />
- </div>
- <div class="badges-section">
- <h2>Frameworks</h2>
- <Badge title="Symfony" img="/images/logos/symfony.svg" :subtitle="$t('x_years', { years: 4 })" />
- <Badge title="Vue.js" img="/images/logos/vue.png" :subtitle="$t('x_years', { years: 3 })" />
- <Badge title="Nuxt.js" img="/images/logos/nuxt.svg" :subtitle="$t('x_years', { years: 3 })" />
- <Badge title="Django" img="/images/logos/django-light.svg" :subtitle="$t('x_years', { years: 3 })" />
- <Badge title=".Net" img="/images/logos/dotnet.svg" :subtitle="$t('x_years', { years: 2 })" />
- <Badge title="Jquery" img="/images/logos/jquery.png" :subtitle="$t('x_years', { years: 4 })"/>
- </div>
- </v-col>
- <v-col cols="4">
- <div class="badges-section">
- <h2>DBs and search-engines</h2>
- <Badge title="Mysql" img="/images/logos/mysql.png" :subtitle="$t('x_years', { years: 6 })" />
- <Badge title="MariaDb" img="/images/logos/mariadb.svg" :subtitle="$t('x_years', { years: 6 })" />
- <Badge title="Postgresql" img="/images/logos/postgresql.png" :subtitle="$t('x_years', { years: 4 })"/>
- <Badge title="SQL-Server" img="/images/logos/sql-server.svg" :subtitle="$t('x_years', { years: 6 })" />
- <Badge title="Sqlite" img="/images/logos/sqlite.png" :subtitle="$t('x_years', { years: 5 })" />
- <Badge title="Solr" img="/images/logos/solr.png" :subtitle="$t('x_years', { years: 1 })" />
- </div>
- <div class="badges-section">
- <h2>Devops</h2>
- <Badge title="Docker" img="/images/logos/docker.svg" :subtitle="$t('x_years', { years: 5 })" />
- <Badge title="Gitlab CI" img="/images/logos/gitlab.svg" :subtitle="$t('x_years', { years: 8 })" />
- <Badge title="Github Actions" img="/images/logos/github-light.svg" :subtitle="$t('x_years', { years: 1 })" />
- <Badge title="Jenkins" img="/images/logos/jenkins.png" :subtitle="$t('x_years', { years: 4 })" />
- </div>
- </v-col>
- <v-col cols="4">
- <div class="badges-section">
- <h2>CMS</h2>
- <Badge title="Typo3" img="/images/logos/typo3.png" :subtitle="$t('x_years', { years: 4 })" />
- <Badge title="Wordpress" img="/images/logos/wordpress.png" :subtitle="$t('x_years', { years: 6 })"/>
- </div>
- <div class="badges-section">
- <h2>Other</h2>
- <Badge title="Mercure (SSE)" img="/images/logos/mercure.svg" :subtitle="$t('x_years', { years: 3 })" />
- <Badge title="Nextcloud" img="/images/logos/nextcloud.svg" :subtitle="$t('x_years', { years: 6 })" />
- </div>
- </v-col>
- </v-row>
- </v-container>
- </div>
- </template>
- <script setup lang="ts">
- const i18n = useI18n()
- const START_YEAR = 2011
- const CURRENT_YEAR = new Date().getFullYear();
- const XP_YEARS = CURRENT_YEAR - START_YEAR
- </script>
- <style scoped lang="scss">
- .banner {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- padding: 20px;
- h2 {
- margin: 18px 0 36px 0;
- border-bottom: none;
- }
- .introduction {
- max-width: 800px;
- text-align: justify;
- padding: 36px 64px;
- border: solid 1px rgba(var(--v-theme-on-neutral), 0.4);
- border-radius: 16px;
- background: rgba(var(--v-theme-primary-alt), 0.1);
- > div {
- margin-bottom: 16px;
- }
- :deep(a) {
- color: rgb(var(--v-theme-on-neutral));
- font-weight: 700;
- text-decoration: none;
- }
- .logos {
- display: flex;
- flex-direction: row;
- .so-logo {
- background-color: white;
- border-radius: 6px;
- }
- }
- }
- }
- .badges {
- }
- .badges-section {
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- justify-content: center;
- .v-card {
- margin: 24px;
- }
- }
- </style>
|