Skip to content

Commit e00adc1

Browse files
committed
wip
1 parent ec8259e commit e00adc1

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

app/components/BlogPostWrapper.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ const blueskyPostUri = computed(() => blueskyLink.value?.postUri ?? null)
2222

2323
<template>
2424
<main class="container w-full py-8">
25-
<article class="max-w-prose mx-auto p-2 border-b border-borde prose dark:prose-invert mx-autor">
25+
<div v-if="frontmatter.authors" class="mb-12 max-w-prose mx-auto">
26+
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
27+
<AuthorList :authors="frontmatter.authors" variant="expanded" />
28+
</div>
29+
</div>
30+
<article class="max-w-prose mx-auto p-2 prose dark:prose-invert mx-auto">
2631
<div class="text-sm text-fg-muted font-mono mb-4">
2732
<DateTime :datetime="frontmatter.date" year="numeric" month="short" day="numeric" />
2833
</div>
2934
<slot />
3035
</article>
31-
<article v-if="frontmatter.authors" class="mt-12 max-w-prose mx-auto">
32-
<div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
33-
<AuthorList :authors="frontmatter.authors" variant="expanded" />
34-
</div>
35-
</article>
3636

3737
<!--
3838
- Only renders if Constellation found a Bluesky post linking to this slug

app/pages/blog/alpha-release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ source.
3737
On January 22nd 2026, Daniel Roe, open-source maintainer and founder, and leader of the [Nuxt](https://nuxt.com/) core
3838
team, had an idea, and made
3939
[the first commit to the npmx repository](https://github.com/npmx-dev/npmx.dev/commit/e39e56c08fd1e7bdb556c8565c6b11b3c34c8934).
40-
The next day, [Daniel posted on Bluesky](https://bsky.app/profile/danielroe.dev/post/3md3cmrg56k2r) to ask about people's
41-
frustrations with the npm experience on the web and the CLI. The question resonated deeply with the community as they
42-
voiced frustrations with the user experience including code browsing, missing data and trust signals including surfacing
40+
The next day, [Daniel posted on Bluesky](https://bsky.app/profile/danielroe.dev/post/3md3cmrg56k2r) to ask about
41+
people's frustrations with the npm experience on the web and the CLI. The question resonated deeply with the community
42+
as they voiced frustrations with the user experience including code browsing, missing data, trust signals, surfacing
4343
dependencies, and the friction surrounding the publishing experience.
4444

4545
It was clear there was a huge opportunity to build a fast, modern browser for the npm registry with an improved

0 commit comments

Comments
 (0)