Working on blog

This commit is contained in:
2024-06-21 13:29:10 +02:00
parent 52287534db
commit f847ec6390
3 changed files with 14 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ const navs = [
{
label: 'writings',
to: '/writings',
icon: 'i-ph-newspaper-duotone'
icon: 'i-ph-newspaper-clipping-duotone'
},
{
label: 'resume',

View File

@@ -1,10 +1,10 @@
<script setup lang="ts">
const description
= 'Software I use, gadgets I love, and other things I recommend. Heres a big list of all of my favorite stuff.'
const description = 'Software I use, gadgets I love, and other things I recommend. Heres a big list of all of my favorite stuff.'
useSeoMeta({
title: 'Things I use | Arthur Danjou',
description
})
const { data: items } = await useAsyncData('uses', () =>
queryContent('/uses').find()
)

View File

@@ -1,13 +1,16 @@
<script setup lang="ts">
const description = 'All my thoughts on programming, mathematics, artificial intelligence design, etc., are put together in chronological order. I also write about my projects, my discoveries, and my thoughts.'
useSeoMeta({
title: 'My Shelf | Arthur Danjou',
description
})
</script>
<template>
<div>
<h1>Writings</h1>
</div>
<main>
<AppTitle
:description="description"
title="Writing on my life, development and my passions."
/>
</main>
</template>
<style scoped>
</style>