mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-30 19:57:54 +01:00
Working
This commit is contained in:
@@ -9,9 +9,9 @@
|
|||||||
{{ $t('home.banner.student.main') }} <strong>{{ $t('home.banner.student.strong') }}</strong>.
|
{{ $t('home.banner.student.main') }} <strong>{{ $t('home.banner.student.strong') }}</strong>.
|
||||||
</h2>
|
</h2>
|
||||||
<div class="select-none mt-4 text-5xl text-gray-800 mb-10 dark:text-gray-300">
|
<div class="select-none mt-4 text-5xl text-gray-800 mb-10 dark:text-gray-300">
|
||||||
<span id="develop" class="color blue">Develop.</span>
|
<span id="develop" class="color blue">{{ $t('home.banner.color.develop') }}</span>
|
||||||
<span id="publish" class="color">Publish.</span>
|
<span id="publish" class="color">{{ $t('home.banner.color.publish') }}</span>
|
||||||
<span id="improve" class="color">Improve.</span>
|
<span id="improve" class="color">{{ $t('home.banner.color.improve') }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -156,13 +156,17 @@ export default defineComponent({
|
|||||||
@apply border-indigo-600
|
@apply border-indigo-600
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.link {
|
.link-active a {
|
||||||
a {
|
@apply text-indigo-600;
|
||||||
@apply border-b-2 border-transparent duration-300;
|
}
|
||||||
|
|
||||||
&:hover {
|
.social-links a {
|
||||||
@apply border-indigo-600;
|
svg {
|
||||||
}
|
@apply h-6 w-6 duration-300
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover svg {
|
||||||
|
@apply transform hover:scale-120
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ export default defineComponent({
|
|||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style scoped lang="scss">
|
||||||
.cross:hover svg {
|
.cross:hover svg {
|
||||||
@apply transform scale-140;
|
@apply transform scale-140;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,6 +60,11 @@ const translations = {
|
|||||||
spacer: 'or simply by',
|
spacer: 'or simply by',
|
||||||
contact: 'Contacting',
|
contact: 'Contacting',
|
||||||
me: 'me.'
|
me: 'me.'
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
develop: 'Develop.',
|
||||||
|
publish: 'Publish.',
|
||||||
|
improve: 'Improve.'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ad: {
|
ad: {
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import {Translation} from "~/types/types";
|
|
||||||
|
|
||||||
const translations = {
|
const translations = {
|
||||||
header: {
|
header: {
|
||||||
@@ -67,6 +66,11 @@ const translations = {
|
|||||||
spacer: 'ou tout simplement en me',
|
spacer: 'ou tout simplement en me',
|
||||||
contact: 'Contactant',
|
contact: 'Contactant',
|
||||||
me: '.'
|
me: '.'
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
develop: 'Développer.',
|
||||||
|
publish: 'Publier.',
|
||||||
|
improve: 'Améliorer.'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ad: {
|
ad: {
|
||||||
|
|||||||
Reference in New Issue
Block a user