feat: explore atproto notes

This commit is contained in:
Julien Calixte
2026-02-27 20:28:53 +01:00
parent 5c70bcad3d
commit da2f4bb768
12 changed files with 312 additions and 23 deletions

View File

@@ -0,0 +1,16 @@
<script setup lang="ts">
import { fetchNotes } from "@/api/fetch-notes"
const notes = await fetchNotes()
</script>
<template>
<div class="blog-notes">
<h2>Last notes</h2>
<ul>
<li v-for="note in notes" :key="note.href">
<a :href="note.path">{{ note.title }}</a>
</li>
</ul>
</div>
</template>