Skip to content

Commit e5debb2

Browse files
committed
Restructure site: add pages, remove archives
Add new routed pages and assets (about/, biomedical-engineering/, connect/, design/, development/, haptrek/, human-factors/, patents/, research/, routes.css, practice-intuition files including .tsx/.ts and HTML fragments), and update index.html. Rename NBME-CRS to NBME-CCS and adjust its page title. Remove a large set of legacy archive and webpages files (archive/* and webpages/*) to clean up the repository. Simplify README.md to a short site title and move the longer repository notes into README1.md.
1 parent e36a1cc commit e5debb2

48 files changed

Lines changed: 5428 additions & 9412 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

2 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>NBME — Clinical Roleplay Simulator</title>
6+
<title>NBME CCS — Clinical Roleplay Simulator</title>
77
<style>
88
:root {
99
--bg:#0A0E14; --bg2:#0F1520; --bg3:#141C2A;

README.md

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,2 @@
1-
## codesbyshrey.github.io
2-
3-
This repository appears to be a GitHub Pages publishing workspace for personal and adjacent organizational web content.
4-
5-
## Current Structure
6-
7-
Top-level contents suggest this repo acts as a container for multiple static web experiments and publishing surfaces:
8-
9-
- `index.html`: a portfolio-style landing page for Shreyas Sriram
10-
- `practice-intuition/`: related site content
11-
- `NBME-CRS/`: medical education or simulation-related content
12-
- `webpages/`: themed conceptual microsites
13-
- `archive/`: older or parked web materials
14-
15-
## Purpose
16-
17-
This repo is best understood as a static publishing hub rather than a single app. It collects landing pages, conceptual essays, and portfolio-adjacent sites under one versioned home.
18-
19-
## Typical Workflow
20-
21-
- edit static HTML, CSS, and asset files directly
22-
- preview locally in a browser or lightweight static server
23-
- publish via GitHub Pages or another static hosting workflow
24-
25-
## Notes
26-
27-
- `README1.md` preserves the original one-line README.
28-
- The repo name suggests public-facing deployment, but the internal structure is more like a multi-site workspace.
1+
# codesbyshrey.github.io
2+
Personal Blog / Portfolio

README1.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
# codesbyshrey.github.io
2-
Personal Blog / Portfolio
2+
3+
Assistant-maintained workspace notes for the GitHub Pages repo.
4+
5+
## Current Structure
6+
7+
- `index.html`: portfolio-style landing page for Shreyas Sriram
8+
- `practice-intuition/`: related site content, including `bonita/` and `kinesthetic/`
9+
- `NBME-CCS/`: medical education or simulation-related content
10+
- `about/`, `connect/`, `research/`, `design/`, `development/`, `human-factors/`, `biomedical-engineering/`, `haptrek/`, `patents/`: routed static pages for the portfolio
11+
12+
## Notes
13+
14+
- The original public README is preserved in `README.md`.
15+
- SPA source material previously hosted here has been relocated into `codesbyshrey/single-page-applications/`.

about/index.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>About | Shreyas Sriram</title>
7+
<meta name="description" content="About Shreyas Sriram: human-centered, product-minded engineering across biomedical engineering, human factors, and interactive systems." />
8+
<link rel="stylesheet" href="/routes.css" />
9+
</head>
10+
<body>
11+
<div class="shell">
12+
<div class="topbar">
13+
<a class="mark" href="/">Codes by Shrey</a>
14+
<div class="links">
15+
<a href="/about/">About</a>
16+
<a href="/research/">Research</a>
17+
<a href="/design/">Design</a>
18+
<a href="/development/">Development</a>
19+
<a href="/connect/">Connect</a>
20+
</div>
21+
</div>
22+
<section class="hero">
23+
<div>
24+
<p class="eyebrow">About</p>
25+
<h1>Human-centered, product-minded engineering.</h1>
26+
<p class="lead">Shreyas Sriram works across biomedical engineering, human factors, systems design, and interactive technology to build tools that feel grounded in real people, real environments, and real constraints.</p>
27+
<div class="actions">
28+
<a class="button primary" href="/connect/">Get in touch</a>
29+
<a class="button secondary" href="/NBME-CCS/">View NBME CCS</a>
30+
</div>
31+
</div>
32+
<div class="panel">
33+
<p class="panel-title">Snapshot</p>
34+
<ul class="list">
35+
<li>MS Human Factors, Bentley University</li>
36+
<li>BS Biomedical Engineering, Rensselaer Polytechnic Institute</li>
37+
<li>Clinical experience as an EMT</li>
38+
<li>Work spanning patient-centered communication, embodied interaction, and AI systems</li>
39+
</ul>
40+
</div>
41+
</section>
42+
<section class="grid">
43+
<article class="panel">
44+
<p class="panel-title">Current Throughline</p>
45+
<p>The portfolio is organized around how people sense, move, decide, and communicate. That includes healthcare workflows, multimodal interfaces, product strategy, biomechanics, and systems that help people act with more clarity.</p>
46+
</article>
47+
<article class="panel">
48+
<p class="panel-title">Background</p>
49+
<p>The strongest thread across the work is translation: turning research into tools, clinical context into product decisions, and technical capability into experiences that remain legible to the people using them.</p>
50+
</article>
51+
</section>
52+
<p class="footer">This page is a stable portfolio entry point. The more interactive long-form portfolio will expand from here later.</p>
53+
</div>
54+
</body>
55+
</html>

archive/PASTE-WORKFLOW.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

archive/README.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

archive/WHY-NOT-FULL-PASTE.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)