diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index 9ef519c..b315a45 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -12,9 +12,14 @@ "contactButton": "Contact", "features": { "projects":{ - "title": "Always working on some projects", - "desc": "As you will see a little below, I'm always working on something.", + "title": "Let's overview some types of projects I'm often dealing with", + "desc": "Be it for study, work or on my free time, I'm always working on something new. As I love to see how those lines of code can enhance daily life, or make Science moving forward, I strive to always imagine, create and maintain useful things.", "buttonText": "See all projects" + }, + "ai":{ + "title": "Artificial Intelligence", + "desc": "How is it possible to...", + "buttonText": "IDK" } } } diff --git a/src/components/home/feature.vue b/src/components/home/feature.vue index 44ba1e0..fdba0ea 100644 --- a/src/components/home/feature.vue +++ b/src/components/home/feature.vue @@ -70,9 +70,11 @@ } .feature_text_div h2{ margin-bottom: 5px; + font-size: 1.8em; } .feature_text_div article p{ margin-top: 20px; + font-size: 1.3em; } .feature_button{ background-color: aqua; diff --git a/src/components/home/featuresDisplay.vue b/src/components/home/featuresDisplay.vue index e44ab3f..ab42fc4 100644 --- a/src/components/home/featuresDisplay.vue +++ b/src/components/home/featuresDisplay.vue @@ -6,7 +6,7 @@ :button-text="e.buttonText" :link="e.link" :picture="e.picture" - :side="i%2==0" + :side="i%2==1" /> @@ -17,6 +17,7 @@ const i18n = useI18n(); import projectsSvg from '@/assets/svg/projets.svg'; + import aiSvg from '@/assets/svg/skills/AI.svg' const features = [{ title: i18n.t("home.features.projects.title"), @@ -25,16 +26,10 @@ picture: projectsSvg, link: "#" },{ - title:"Hello World !", - desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin felis \ - lectus, feugiat in eros sit amet, venenatis euismod urna. Aliquam id \ - porttitor erat, vitae dapibus velit. Praesent id felis tincidunt, \ - efficitur tortor eget, volutpat orci. Vestibulum ac lectus tincidunt, \ - suscipit justo at, fringilla nisl. Aliquam tincidunt congue faucibus. Duis in nisi tortor. \ - Nulla sit amet turpis nec turpis rhoncus venenatis. Sed nec malesuada quam. \ - Aenean faucibus neque id nibh facilisis auctor. ", - buttonText: "Click me !", - picture: "https://picsum.photos/600/400", + title: i18n.t("home.features.ai.title"), + desc: i18n.t("home.features.ai.desc"), + buttonText: i18n.t("home.features.ai.buttonText"), + picture: aiSvg, link: "#" }];