mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-07 07:05:47 +01:00
Fix small details
This commit is contained in:
@@ -13,7 +13,8 @@ const getActivity = computed(() => {
|
|||||||
if (!activity) return
|
if (!activity) return
|
||||||
|
|
||||||
const active = activity.name === 'Visual Studio Code' ? !activity.details.includes('Idling') : activity.state.toLowerCase().includes('editing')
|
const active = activity.name === 'Visual Studio Code' ? !activity.details.includes('Idling') : activity.state.toLowerCase().includes('editing')
|
||||||
const project = activity.details ? activity.details.replace('Workspace:', '') : ''
|
const capitalise = (str: string) => str.charAt(0).toUpperCase() + str.slice(1)
|
||||||
|
const project = activity.details ? capitalise(activity.details.replace('Workspace:', '')) : ''
|
||||||
const state = activity.state.split(' ')[1]
|
const state = activity.state.split(' ')[1]
|
||||||
const start = {
|
const start = {
|
||||||
ago: useTimeAgo(activity.timestamps.start).value,
|
ago: useTimeAgo(activity.timestamps.start).value,
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
title: Arthur Danjou • Mathematics Lover and IA Enthusiast
|
||||||
|
---
|
||||||
|
|
||||||
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 :hover-text{hover="Technology is evolving far too quickly 🤯" position="top" text="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 ∑" position="right" text="mathematics"} gives me a head start in
|
With a :hover-text{hover="Technology is evolving far too quickly 🤯" position="top" text="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 ∑" position="right" text="mathematics"} gives me a head start in
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
Bonjour, je suis Arthur Danjou, étudiant en mathématiques à la faculté des sciences de Paris-Saclay en France.
|
---
|
||||||
|
title: Arthur Danjou • Mathematics Lover and IA Enthusiast
|
||||||
|
---
|
||||||
|
|
||||||
|
Salut, je suis Arthur Danjou, étudiant en mathématiques à la faculté des sciences de Paris-Saclay en France.
|
||||||
|
|
||||||
Avec une :hover-text{hover="La technologie évolue beaucoup trop vite 🤯" position="top" text="compréhension profonde des
|
Avec une :hover-text{hover="La technologie évolue beaucoup trop vite 🤯" position="top" text="compréhension profonde des
|
||||||
technologies émergentes"}, je suis au cœur d'un domaine en pleine expansion. Ma formation en :hover-text{hover="Les
|
technologies émergentes"}, je suis au cœur d'un domaine en pleine expansion. Ma formation en :hover-text{hover="Les
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ export default defineNuxtConfig({
|
|||||||
app: {
|
app: {
|
||||||
pageTransition: { name: 'page', mode: 'out-in' },
|
pageTransition: { name: 'page', mode: 'out-in' },
|
||||||
head: {
|
head: {
|
||||||
htmlAttrs: { lang: 'en' },
|
|
||||||
templateParams: {
|
templateParams: {
|
||||||
separator: '•'
|
separator: '•'
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user