File tree Expand file tree Collapse file tree 4 files changed +25
-4
lines changed
Expand file tree Collapse file tree 4 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 11<h1 >
2- <img src =" src/browser/logo.svg " alt =" pulldash logo " width =" 32 " height =" 32 " align =" center " >
2+ <img src =" src/browser/logo.svg " alt =" pulldash logo " width =" 40 " height =" 40 " align =" center " >
33 Pulldash
44</h1 >
55
Original file line number Diff line number Diff line change 11{
22 "name" : " pulldash" ,
33 "version" : " 0.0.5" ,
4- "description" : " A fast, local PR review dashboard " ,
4+ "description" : " Fast, filterable PR review. Entirely client-side. " ,
55 "type" : " module" ,
66 "bin" : {
77 "pulldash" : " ./dist/pulldash"
Original file line number Diff line number Diff line change @@ -375,6 +375,11 @@ export function Home() {
375375 setPage ( 1 ) ;
376376 } , [ config . repos , config . state ] ) ;
377377
378+ // Set document title
379+ useEffect ( ( ) => {
380+ document . title = isAuthenticated ? "Home · Pulldash" : "Pulldash" ;
381+ } , [ isAuthenticated ] ) ;
382+
378383 // Convenience accessors
379384 const prs = prList . items ;
380385 const loadingPrs = prList . loading ;
Original file line number Diff line number Diff line change 44 < meta charset ="UTF-8 " />
55 < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
66
7- < title > Pulldash - Fast GitHub PR Reviews </ title >
7+ < title > Pulldash – Fast, Filterable PR Review </ title >
88 < meta
99 name ="description "
10- content ="A lightning-fast, local PR review dashboard with syntax highlighting. "
10+ content ="Fast, filterable PR review. Entirely client-side via GitHub's CORS API. "
11+ />
12+ < meta property ="og:title " content ="Pulldash – Fast, Filterable PR Review " />
13+ < meta
14+ property ="og:description "
15+ content ="Fast, filterable PR review. Entirely client-side via GitHub's CORS API. "
16+ />
17+ < meta property ="og:type " content ="website " />
18+ < meta property ="og:url " content ="https://pulldash.com " />
19+ < meta name ="twitter:card " content ="summary_large_image " />
20+ < meta
21+ name ="twitter:title "
22+ content ="Pulldash – Fast, Filterable PR Review "
23+ />
24+ < meta
25+ name ="twitter:description "
26+ content ="Fast, filterable PR review. Entirely client-side via GitHub's CORS API. "
1127 />
1228 < meta name ="theme-color " content ="#408AC3 " />
1329
You can’t perform that action at this time.
0 commit comments