From d96d7bf398c466b010c7534fc4556f5038761efb Mon Sep 17 00:00:00 2001 From: LJ5O <75009579+LJ5O@users.noreply.github.com> Date: Wed, 19 Mar 2025 18:30:43 +0100 Subject: [PATCH] Started to add some real text Also worked on the translation system --- src/assets/localization/en/localization.json | 20 +++++++++++++++++-- src/components/home/presentation.vue | 13 ++---------- src/components/home/welcome.vue | 10 ++++++++-- src/main.js | 4 +++- src/views/HomeView.vue | 21 ++++++++++---------- 5 files changed, 41 insertions(+), 27 deletions(-) diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 211b0be..b6f1d54 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -1,5 +1,21 @@ { - "message": { - "hello": "hello world" + "home":{ + "greeting": "Hello ! I'm Kévin Taccoen !", + "occupation": { + "ai":"AI enthusiast", + "fullstack":"Full-Stack Developer", + "student":"Master's degree student" + }, + "presentationTitle":"Thanks for visiting !", + "presentationText": "I'm Kévin Taccoen, TODO", + "contactMe": "Are you looking to send me a message ?", + "contactButton": "Contact", + "features": { + "projects":{ + "title": "Always working on some projects", + "desc": "As you will see a little below, I'm always working on something.", + "buttonText": "See all projects" + } + } } } \ No newline at end of file diff --git a/src/components/home/presentation.vue b/src/components/home/presentation.vue index 04dcc02..5096f7b 100644 --- a/src/components/home/presentation.vue +++ b/src/components/home/presentation.vue @@ -1,18 +1,9 @@