Ready to add schools

This commit is contained in:
2025-04-29 17:09:39 +02:00
parent 35f4376c3d
commit 7c6aa3c27f
2 changed files with 10 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
<div class="school_info"> <div class="school_info">
<p class="school_name">{{ name }}</p> <p class="school_name">{{ name }}</p>
<p class="school_about">{{ desc }}</p> <p class="school_about">{{ desc }}</p>
<a :href="link" v-if="link!=undefined"><button class="button">Website</button></a> <a :href="link" v-if="link!=undefined" target="__blank"><button class="button">Website</button></a>
</div> </div>
</div> </div>
</template> </template>
@@ -44,6 +44,7 @@
flex-wrap: wrap; flex-wrap: wrap;
/*align-items: center;*/ /*align-items: center;*/
justify-content: center; justify-content: center;
border-radius: 8px;
} }
.school_picture{ .school_picture{

View File

@@ -6,8 +6,7 @@
<article> <article>
<p>{{ $t("education.introduction") }}</p> <p>{{ $t("education.introduction") }}</p>
<schoolDisplay name="My school" desc="Before reaching my current level, I had a long time learning various concepts in some nice institutions who accepted me as a student. I'm really grateful towards all of them, as I wouldn't be like I am without their help." <schoolDisplay :name="schools[0].name" :desc="schools[0].desc" :img="schools[0].img" :link="schools[0].link"/>
img="https://picsum.photos/600/400"/>
</article> </article>
</template> </template>
@@ -21,6 +20,13 @@
const i18n = useI18n(); const i18n = useI18n();
const schools = [{
name: "Ensemble Scolaire",
desc: "Yes",
img: "https://picsum.photos/600/400",
link: "A.com"
}];
/*const skills = [{ /*const skills = [{
title: i18n.t("skills.skills.ai.title"), title: i18n.t("skills.skills.ai.title"),
desc: i18n.t("skills.skills.ai.desc"), desc: i18n.t("skills.skills.ai.desc"),