docs(astro): replace organizations array with static list and add inline links

This commit is contained in:
Prad Nukala
2026-07-23 13:07:41 -04:00
parent 84b72b8453
commit 2a34a0a0c2
+20 -25
View File
@@ -34,18 +34,6 @@ const meta = {
"Prad Nukala — engineer and founder building decentralized identity infrastructure. Explore my projects, experience, writing, and talks.",
schema: [websiteSchema(), personSchema(skills)],
};
const organizations = [
{
name: "World Wide Web Consortium (W3C)",
role: "Working Group — DIDs, WebAuthn, WASM",
url: "https://www.w3.org/",
},
{
name: "Decentralized Identity Foundation (DIF)",
role: "Working Group — UCAN, DWN",
url: "https://identity.foundation/",
},
];
---
<PageLayout meta={meta}>
@@ -59,9 +47,11 @@ const organizations = [
</p>
<p class="mb-4">
I help shape the open standards behind user-owned identity as a working-group member at the
W3C (DIDs, WebAuthn, WebAssembly) and the Decentralized Identity Foundation (UCAN, DWN). I've
been shipping software since age 12 — three apps with over 1M downloads, technical writing
read 120k+ times, and bylines in Fast Company.
W3C (<a class="cactus-link" href="https://www.w3.org/groups/wg/did/former-participants/" rel="noreferrer" target="_blank">DIDs</a>,
WebAuthn, <a class="cactus-link" href="https://www.w3.org/groups/wg/wasm/former-participants/" rel="noreferrer" target="_blank">WebAssembly</a>)
and the Decentralized Identity Foundation (UCAN, DWN). I've been shipping software since age
12 — three apps with over 1M downloads, technical writing read 120k+ times, and bylines in
Fast Company.
</p>
<p>
Find me on <a class="cactus-link" href={social.GitHub} rel="me noreferrer" target="_blank">Github</a>,
@@ -132,16 +122,21 @@ const organizations = [
<section class="mt-16">
<h2 class="title text-accent mb-6 text-xl">Standards &amp; Organizations</h2>
<ul class="space-y-4" role="list">
{
organizations.map((org) => (
<li>
<a class="cactus-link" href={org.url} rel="noreferrer" target="_blank">
{org.name}
</a>{" "}
— {org.role}
</li>
))
}
<li>
<a class="cactus-link" href="https://www.w3.org/" rel="noreferrer" target="_blank">
World Wide Web Consortium (W3C)
</a>
— Working Group —
<a class="cactus-link" href="https://www.w3.org/groups/wg/did/former-participants/" rel="noreferrer" target="_blank">DIDs</a>,
WebAuthn,
<a class="cactus-link" href="https://www.w3.org/groups/wg/wasm/former-participants/" rel="noreferrer" target="_blank">WASM</a>
</li>
<li>
<a class="cactus-link" href="https://identity.foundation/" rel="noreferrer" target="_blank">
Decentralized Identity Foundation (DIF)
</a>
— Working Group — UCAN, DWN
</li>
</ul>
</section>
</PageLayout>