Added some text lines

This commit is contained in:
2025-03-20 22:13:18 +01:00
parent 6ce4475e70
commit 8b1e505d14
3 changed files with 6 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
"student":"Master's degree student" "student":"Master's degree student"
}, },
"presentationTitle":"Thanks for visiting !", "presentationTitle":"Thanks for visiting !",
"presentationText": "I'm Kévin Taccoen, TODO", "presentationText": "Hi ! I'm Kévin Taccoen, a Computer Science student currently pursuing a Master's degree at <a href=\"\" target=\"_blank\" rel=\"noopener\">Opal Coast University</a>, France. I'm studying a lot about new technologies, and their potential to shape the Future.<br>Also often playing with Artificial Intelligence, and working on projects using my skills in full-stack development, software conception or data analysis.",
"contactMe": "Are you looking to send me a message ?", "contactMe": "Are you looking to send me a message ?",
"contactButton": "Contact", "contactButton": "Contact",
"features": { "features": {

View File

@@ -7,9 +7,10 @@ h1,h2,h3,h4,h5,p{
a{ a{
text-decoration: none; text-decoration: none;
color: #6495ed;
} }
a:visited{ a:visited{
color: #EAEAEA; color: #6495ed;
text-decoration: none; text-decoration: none;
} }

View File

@@ -3,7 +3,7 @@
<div id="presentation_text"> <div id="presentation_text">
<h1>{{ $t("home.presentationTitle") }}</h1> <h1>{{ $t("home.presentationTitle") }}</h1>
<article> <article>
<p>{{ $t("home.presentationText") }}</p> <p v-html="$t('home.presentationText')"></p>
</article> </article>
</div> </div>
<div id="presentation_img"><img :src="welcomeImg"></div> <div id="presentation_img"><img :src="welcomeImg"></div>
@@ -34,11 +34,13 @@
width: fit-content; width: fit-content;
margin:auto; margin:auto;
margin-top: 5px; margin-top: 5px;
font-size: 2.6em;
} }
#presentation_text article p{ #presentation_text article p{
width: fit-content; width: fit-content;
margin:auto; margin:auto;
margin-top: 20px; margin-top: 20px;
font-size: 1.4em;
} }
#presentation_img{ #presentation_img{
width: fit-content; width: fit-content;