feat: mettre à jour les métadonnées SEO et réorganiser les pages de projets

This commit is contained in:
2025-12-24 00:06:35 +01:00
parent a3210afaaf
commit b252f54fa0
8 changed files with 59 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts" setup>
</script>
<template>
<div>
</div>
</template>
<style scoped>
</style>

View File

@@ -0,0 +1,17 @@
<script lang="ts" setup>
const { data: projects } = await useAsyncData('projects', () => {
return queryCollection('projects').order('publishedAt', 'DESC').all()
})
useSeoMeta({
title: 'Engineering & Research Labs',
description: 'Bridging the gap between theoretical models and production systems. Explore my experimental labs, open-source contributions, and engineering work.',
ogTitle: 'Engineering & Research Labs • Arthur Danjou',
ogDescription: 'Bridging the gap between theoretical models and production systems. Explore my experimental labs, open-source contributions, and engineering work.',
twitterCard: 'summary_large_image'
})
</script>
<template>
<div />
</template>