Skip to content

Commit fd92cd4

Browse files
upstream: add slack-blocks-to-jsx and make card owner per-entry
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 05c8565 commit fd92cd4

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

src/components/UpstreamSupport.astro

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,30 @@
11
---
22
const upstreamRepos = [
33
{
4+
owner: 'seratch',
45
name: 'slack-edge',
56
description:
67
'Slack app framework for TypeScript edge runtimes — Cloudflare Workers, Deno, Vercel.',
78
url: 'https://github.com/seratch/slack-edge',
89
},
910
{
11+
owner: 'seratch',
1012
name: 'slack-cloudflare-workers',
1113
description: 'Slack app framework purpose-built for Cloudflare Workers.',
1214
url: 'https://github.com/seratch/slack-cloudflare-workers',
1315
},
1416
{
17+
owner: 'seratch',
1518
name: 'slack-web-api-client',
1619
description: 'TypeScript Slack Web API client tuned for edge runtimes.',
1720
url: 'https://github.com/seratch/slack-web-api-client',
1821
},
22+
{
23+
owner: 'themashcodee',
24+
name: 'slack-blocks-to-jsx',
25+
description: 'Render Slack Block Kit messages as JSX in React apps.',
26+
url: 'https://github.com/themashcodee/slack-blocks-to-jsx',
27+
},
1928
];
2029
---
2130

@@ -54,7 +63,7 @@ const upstreamRepos = [
5463
>
5564
<div class="mb-4 flex items-start justify-between gap-3">
5665
<div class="font-mono text-[11px] tracking-[0.16em] uppercase opacity-80">
57-
seratch / <span class="font-semibold opacity-100">{repo.name}</span>
66+
{repo.owner} / <span class="font-semibold opacity-100">{repo.name}</span>
5867
</div>
5968
<span
6069
class="font-mono text-[16px] leading-none transition-transform group-hover:scale-110 group-hover:rotate-[12deg]"

0 commit comments

Comments
 (0)