mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-22 15:51:37 +01:00
Working on blog
This commit is contained in:
@@ -19,7 +19,7 @@ const navs = [
|
||||
{
|
||||
label: 'writings',
|
||||
to: '/writings',
|
||||
icon: 'i-ph-newspaper-duotone'
|
||||
icon: 'i-ph-newspaper-clipping-duotone'
|
||||
},
|
||||
{
|
||||
label: 'resume',
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
const description
|
||||
= 'Software I use, gadgets I love, and other things I recommend. Here’s a big list of all of my favorite stuff.'
|
||||
const description = 'Software I use, gadgets I love, and other things I recommend. Here’s 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()
|
||||
)
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user