Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PORTFOLIO-2025
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clement Franckelemon
PORTFOLIO-2025
Compare revisions
b04e5a00c480517cbec371ab5adf461dd8269e4c to 9a3d8f6fb942b572d78cd0866c482df4ffc2f883
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
clement.franckelemon.etu/portfolio-2025
Select target project
No results found
9a3d8f6fb942b572d78cd0866c482df4ffc2f883
Select Git revision
Swap
Target
clement.franckelemon.etu/portfolio-2025
Select target project
clement.franckelemon.etu/portfolio-2025
1 result
b04e5a00c480517cbec371ab5adf461dd8269e4c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
💄
add easter egg profile
· 07fe599c
Clement Franckelemon
authored
2 months ago
07fe599c
💄
add easter egg profile
· 9a3d8f6f
Clement Franckelemon
authored
2 months ago
9a3d8f6f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
public/images/secret.png
+0
-0
0 additions, 0 deletions
public/images/secret.png
src/components/HomeView.vue
+12
-2
12 additions, 2 deletions
src/components/HomeView.vue
src/pages/IndexPage.vue
+1
-0
1 addition, 0 deletions
src/pages/IndexPage.vue
with
13 additions
and
2 deletions
public/images/secret.png
0 → 100644
View file @
9a3d8f6f
348 KiB
This diff is collapsed.
Click to expand it.
src/components/HomeView.vue
View file @
9a3d8f6f
<
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 && isMain"
>
</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
,
...
...
@@ -21,8 +25,14 @@ defineProps({
src
:
{
type
:
String
,
required
:
true
},
isMain
:
{
type
:
Boolean
,
default
:
false
}
})
const
secretActif
=
ref
(
false
)
</
script
>
<
style
scoped
>
...
...
This diff is collapsed.
Click to expand it.
src/pages/IndexPage.vue
View file @
9a3d8f6f
...
...
@@ -6,6 +6,7 @@
second=
"FRANCKELEMON"
accent=
"Alternant en 3ème année de BUT Informatique chez Nextoo"
src=
"/clement.franckelemon.etu/portfolio-2025/spa/images/profil.png"
:is-main=
"true"
class=
"q-mb-xl"
/>
<div
id=
"presentation"
class=
"col-12"
/>
<PresentationView
class=
"q-mb-xl"
/>
...
...
This diff is collapsed.
Click to expand it.