mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-08 05:06:00 +01:00
Improve and fix errors on main page
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
import type { Placement } from '@popperjs/core'
|
||||||
|
import type { PropType } from 'vue'
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
text: {
|
text: {
|
||||||
type: [String, Number],
|
type: [String, Number],
|
||||||
@@ -7,12 +10,18 @@ defineProps({
|
|||||||
hover: {
|
hover: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
position: {
|
||||||
|
type: String as PropType<Placement>
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<UTooltip :text="hover">
|
<UTooltip
|
||||||
|
:popper="{ placement: position }"
|
||||||
|
:text="hover"
|
||||||
|
>
|
||||||
<strong class="leading-3">{{ text }}</strong>
|
<strong class="leading-3">{{ text }}</strong>
|
||||||
</UTooltip>
|
</UTooltip>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
Hey, I'm Arthur Danjou, a mathematics student at the Paris-Saclay Faculty of Science in France.
|
Hey, I'm Arthur Danjou, a mathematics student at the Paris-Saclay Faculty of Science in France.
|
||||||
|
|
||||||
With a **deep understanding of emerging technologies**, I'm at the heart of a rapidly expanding field. My background
|
With a **deep understanding of emerging technologies**, I'm at the heart of a rapidly expanding field. My background
|
||||||
in :hover-text{hover="Maths is my main passion ∑" text="mathematics"} gives me a head start in understanding the
|
in :hover-text{hover="Maths is my main passion ∑" text="mathematics" position="top"} gives me a head start in
|
||||||
|
understanding the
|
||||||
concepts and theories behind these :hover-text{hover="My second passion 📱" text="technologies"} and in designing them
|
concepts and theories behind these :hover-text{hover="My second passion 📱" text="technologies"} and in designing them
|
||||||
effectively.
|
effectively.
|
||||||
|
|
||||||
@@ -20,7 +21,8 @@ I also learned other important technologies, such as
|
|||||||
:prose-icon[MySQL]{icon="i-logos:mysql-icon"} and
|
:prose-icon[MySQL]{icon="i-logos:mysql-icon"} and
|
||||||
:prose-icon[Git]{icon="i-logos:git-icon"} to **improve** and **complete** my knowledge.
|
:prose-icon[Git]{icon="i-logos:git-icon"} to **improve** and **complete** my knowledge.
|
||||||
|
|
||||||
I'm :hover-text{hover="As tech is always evolving, I need to be up-to-date 🖥️" text="constantly"} learning new things,
|
I'm :hover-text{hover="As tech is always evolving, I need to be up-to-date 🖥️" text="constantly" position="top"}
|
||||||
|
learning new things,
|
||||||
from technology to finance and entrepreneurship. I love :hover-text{hover="I love sharing my knowledge and helping
|
from technology to finance and entrepreneurship. I love :hover-text{hover="I love sharing my knowledge and helping
|
||||||
others 🫂" text="sharing"} my knowledge and learning new theorems and technologies. I'm a **curious** person and eager to
|
others 🫂" text="sharing"} my knowledge and learning new theorems and technologies. I'm a **curious** person and eager to
|
||||||
continue learning and growing throughout my life.
|
continue learning and growing throughout my life.
|
||||||
|
|||||||
Reference in New Issue
Block a user