Skip to content

Commit 3ed2985

Browse files
danbimclaude
andcommitted
docs: add talent pools feature to README and landing page
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent dab286c commit 3ed2985

File tree

8 files changed

+20
-0
lines changed

8 files changed

+20
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ A single-user application for ranking and tracking job openings using weighted s
4141
- Track application status through 7 stages (not applied, applied, interviewing, offer, rejected, ghosted, dumped)
4242
- Add notes to any job opening
4343
- Track job posting sites and saved searches with "last checked" timestamps
44+
- Track talent pools you've joined or submitted your profile to
4445
- Paste HTML job descriptions — automatically converted to Markdown
4546
- Back up and restore the database (`bun run db:backup` / `bun run db:restore`)
4647

docs/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ <h2>Job Posting Sites</h2>
6868
</div>
6969
<img src="screenshots/sites.png" alt="Job posting sites page with last checked dates">
7070
</section>
71+
72+
<section class="feature">
73+
<div class="feature-content">
74+
<h2>Talent Pools</h2>
75+
<p>Track company talent pools you've joined or submitted your profile to. Toggle submission status with a click, and keep notes on each pool for quick reference.</p>
76+
</div>
77+
<img src="screenshots/talent-pools.png" alt="Talent pools page with submission status tracking">
78+
</section>
7179
</main>
7280

7381
<footer>

docs/screenshots/filters.png

-910 Bytes
Loading

docs/screenshots/job-list.png

-2.53 KB
Loading

docs/screenshots/notes-panel.png

-2.11 KB
Loading

docs/screenshots/sites.png

1.05 KB
Loading

docs/screenshots/talent-pools.png

36.8 KB
Loading

e2e/screenshots.spec.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,17 @@ test.describe('Landing page screenshots', () => {
8585
})
8686
})
8787

88+
test('talent pools', async ({ page }) => {
89+
await page.goto('/talent-pools')
90+
await page.waitForSelector('table')
91+
await page.waitForTimeout(300)
92+
93+
await page.screenshot({
94+
path: 'docs/screenshots/talent-pools.png',
95+
fullPage: false,
96+
})
97+
})
98+
8899
test('filters section', async ({ page }) => {
89100
await page.goto('/')
90101
await page.waitForSelector('table')

0 commit comments

Comments
 (0)