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.", "Prad Nukala — engineer and founder building decentralized identity infrastructure. Explore my projects, experience, writing, and talks.",
schema: [websiteSchema(), personSchema(skills)], 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}> <PageLayout meta={meta}>
@@ -59,9 +47,11 @@ const organizations = [
</p> </p>
<p class="mb-4"> <p class="mb-4">
I help shape the open standards behind user-owned identity as a working-group member at the 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 W3C (<a class="cactus-link" href="https://www.w3.org/groups/wg/did/former-participants/" rel="noreferrer" target="_blank">DIDs</a>,
been shipping software since age 12 — three apps with over 1M downloads, technical writing WebAuthn, <a class="cactus-link" href="https://www.w3.org/groups/wg/wasm/former-participants/" rel="noreferrer" target="_blank">WebAssembly</a>)
read 120k+ times, and bylines in Fast Company. 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>
<p> <p>
Find me on <a class="cactus-link" href={social.GitHub} rel="me noreferrer" target="_blank">Github</a>, 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"> <section class="mt-16">
<h2 class="title text-accent mb-6 text-xl">Standards &amp; Organizations</h2> <h2 class="title text-accent mb-6 text-xl">Standards &amp; Organizations</h2>
<ul class="space-y-4" role="list"> <ul class="space-y-4" role="list">
{ <li>
organizations.map((org) => ( <a class="cactus-link" href="https://www.w3.org/" rel="noreferrer" target="_blank">
<li> World Wide Web Consortium (W3C)
<a class="cactus-link" href={org.url} rel="noreferrer" target="_blank"> </a>
{org.name} — Working Group —
</a>{" "} <a class="cactus-link" href="https://www.w3.org/groups/wg/did/former-participants/" rel="noreferrer" target="_blank">DIDs</a>,
— {org.role} WebAuthn,
</li> <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> </ul>
</section> </section>
</PageLayout> </PageLayout>