Skip to content
Snippets Groups Projects
Commit 07fe599c authored by Clement Franckelemon's avatar Clement Franckelemon
Browse files

:lipstick: add easter egg profile

parent b04e5a00
No related branches found
No related tags found
No related merge requests found
<template>
<div class="column items-center full-width non-selectable">
<div class="col-3" style="max-width: 450px; width: 75%">
<img :src="src"
<img :src="secretActif ? '/clement.franckelemon.etu/portfolio-2025/spa/images/secret.png' : src "
style="border-radius: 50%; width: 100%; height: 100%; object-fit: cover;"
class="full-height full-width shadow-6">
class="full-height full-width shadow-6"
@dblclick="secretActif = !secretActif"
>
</div>
<div class="col-6 column items-center text-h2 text-bold text-secondary" :class="$q.screen.lt.md ? 'text-h4' : 'text-h2' ">
<span class="arial text-uppercase">{{first}}</span>
......@@ -14,6 +16,8 @@
</template>
<script setup lang="ts">
import { ref } from 'vue'
defineProps({
first: String,
second: String,
......@@ -23,6 +27,8 @@ defineProps({
required: true
}
})
const secretActif = ref(false)
</script>
<style scoped>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment