From 9890c97ac4f8fe635658b26b7682c1de6ac9cdc3 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 23 Jul 2026 13:01:14 -0400 Subject: [PATCH] docs(astro): restructure homepage, add education & organization sections, remove about page --- src/pages/about.astro | 70 -------------------------------- src/pages/experience/index.astro | 12 ++++++ src/pages/index.astro | 47 +++++++++++++++++++-- 3 files changed, 56 insertions(+), 73 deletions(-) delete mode 100644 src/pages/about.astro diff --git a/src/pages/about.astro b/src/pages/about.astro deleted file mode 100644 index b3023ea..0000000 --- a/src/pages/about.astro +++ /dev/null @@ -1,70 +0,0 @@ ---- -import PageLayout from "@/layouts/Base.astro"; - -const meta = { - description: - "About Prad Nukala — engineer and founder building decentralized identity infrastructure, W3C and DIF working-group member, and lifelong app developer.", - title: "About", -}; - -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/", - }, -]; ---- - - -

About

-
-

- I'm Prad Nukala — an engineer and founder building decentralized identity infrastructure. As - co-founder and CEO of Sonr, I'm - building a peer-to-peer identity and data network powered by decentralized identifiers (DIDs), - WebAuthn, and IPFS. -

-

- 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. -

- -

Education

-

- Virginia Commonwealth University
- B.S. in Applied Mathematics · 2017–2020 -

-

- Attended 5 MLH hackathons, published 3 apps in 3 years with over 1M downloads, and wrote 3 - articles with over 120k reads. Coursework spanned linear algebra, number theory, topological - data analysis, and vector calculus. -

- -

Honors & Recognition

-
    -
  • Guest Lecturer, Crypto Finance (15.492) — MIT Sloan School of Management
  • -
- -

Standards & Organizations

-
    - { - organizations.map((org) => ( -
  • - - {org.name} - {" "} - — {org.role} -
  • - )) - } -
-
-
diff --git a/src/pages/experience/index.astro b/src/pages/experience/index.astro index 8f4c344..3e04091 100644 --- a/src/pages/experience/index.astro +++ b/src/pages/experience/index.astro @@ -49,4 +49,16 @@ const range = (start: Date, end?: Date) => )) } +
+

Education

+

+ Virginia Commonwealth University
+ B.S. in Applied Mathematics +

+

+ Attended 5 MLH hackathons, published 3 apps in 3 years with over 1M downloads, and wrote 3 + articles with over 120k reads. Coursework spanned linear algebra, number theory, topological + data analysis, and vector calculus. +

+
diff --git a/src/pages/index.astro b/src/pages/index.astro index 5dffc66..ce199a1 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -34,14 +34,34 @@ 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/", + }, +]; ---
-

Hello World

+

About

- Engineer and founder. I build decentralized identity infrastructure and tools for developers. - Here you'll find what I've built, where I've worked, what I write, and the talks I've given. + I'm Prad Nukala — an engineer and founder building decentralized identity infrastructure. As + co-founder and CEO of Sonr, I'm + building a peer-to-peer identity and data network powered by decentralized identifiers (DIDs), + WebAuthn, and IPFS. +

+

+ 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.

Find me on Github, @@ -103,4 +123,25 @@ const meta = {

) } +
+

Honors & Recognition

+
    +
  • Guest Lecturer, Crypto Finance (15.492) — MIT Sloan School of Management
  • +
+
+
+

Standards & Organizations

+
    + { + organizations.map((org) => ( +
  • + + {org.name} + {" "} + — {org.role} +
  • + )) + } +
+