mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 20:59:57 +01:00
Improve and fix errors on main page
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
<script lang="ts" setup>
|
||||
import type { Placement } from '@popperjs/core'
|
||||
import type { PropType } from 'vue'
|
||||
|
||||
defineProps({
|
||||
text: {
|
||||
type: [String, Number],
|
||||
@@ -7,12 +10,18 @@ defineProps({
|
||||
hover: {
|
||||
type: String,
|
||||
required: true
|
||||
},
|
||||
position: {
|
||||
type: String as PropType<Placement>
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<UTooltip :text="hover">
|
||||
<UTooltip
|
||||
:popper="{ placement: position }"
|
||||
:text="hover"
|
||||
>
|
||||
<strong class="leading-3">{{ text }}</strong>
|
||||
</UTooltip>
|
||||
</template>
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
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
|
||||
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
|
||||
effectively.
|
||||
|
||||
@@ -20,7 +21,8 @@ I also learned other important technologies, such as
|
||||
:prose-icon[MySQL]{icon="i-logos:mysql-icon"} and
|
||||
: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
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user