Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
130057f
Add v1 design spec for the powered-by dashboard
Jul 21, 2026
a64662c
Correct category label set in dashboard spec
Jul 21, 2026
7b53806
feat: add category label utility for powered-by dashboard
Jul 22, 2026
508b726
feat: add fetchProjects data module for the powered-by API
Jul 22, 2026
c430993
feat: add ProjectCard component
Jul 22, 2026
a429543
feat: add ProjectGrid component
Jul 22, 2026
ccfae32
feat: wire Dashboard into App with fetch + loading/error states
Jul 22, 2026
965356b
feat: add Controls component (search, category filter, count)
Jul 22, 2026
0102011
feat: add search, category filter, and sorting to Dashboard
Jul 22, 2026
0467856
style: add dashboard layout and card styling
Jul 22, 2026
efcdef6
docs: mark dashboard v1 plan tasks complete
Jul 22, 2026
9d2a997
docs: add design spec for ProjectCard description truncation
Jul 22, 2026
188fd37
docs: add implementation plan for ProjectCard description truncation
Jul 22, 2026
e2949a7
feat: add description clamp and overflow-detection to ProjectCard
Jul 22, 2026
e077b27
style: add clamp and toggle styling for ProjectCard descriptions
Jul 22, 2026
846dd45
style: change description clamp from 3 to 5 lines
Jul 22, 2026
4b280f6
docs: add design spec for scrollable description (supersedes toggle d…
Jul 22, 2026
5886ed3
feat: replace view-more toggle with scrollable fixed-height description
Jul 22, 2026
f9271b5
docs: mark superseded design/plan docs, comment the clamp height deri…
Jul 22, 2026
662ca79
docs: add design spec for tabbed sidebar navigation
Jul 27, 2026
9fddd12
feat: add Sidebar tab navigation component
Jul 27, 2026
92ab576
feat: add Charts and Analytics placeholder component
Jul 27, 2026
7ca397f
feat: wire up tabbed sidebar navigation in App
Jul 27, 2026
c5b5dcc
docs: add design spec for experience-level submissions trend chart
Jul 28, 2026
17f298b
docs: add implementation plan for experience-level trend chart
Jul 28, 2026
af3bf48
chore: carry forward in-progress dashboard/charts work
Jul 28, 2026
c777631
feat: add technical-experience level mapping utility
Jul 28, 2026
731e71a
docs: fix broken node --test invocation in plan
Jul 28, 2026
418b442
feat: add monthly submissions trend broken out by experience level
Jul 28, 2026
4d942fe
feat: add experience-level submissions trend chart
Jul 28, 2026
8585168
fix: widen LineChart right margin and disable Line animation so exper…
Jul 28, 2026
7036bae
fix: address final review findings (chart range, label contrast, anim…
Jul 28, 2026
62edf7a
fix: removed docs/superpowers/
Jul 28, 2026
cb2d829
fix: adding .gitignore
Jul 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ node_modules
dist
dist-ssr
*.local
.superpowers/
docs/superpowers/

# Editor directories and files
.vscode/*
Expand Down
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="icon" type="image/png" href="
" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<title>Powered by Sefaria Dashboard</title>
</head>
<body>
Expand Down
Loading
Loading