Skip to content

Commit 3684fa4

Browse files
committed
Fix the meta description
1 parent 730df82 commit 3684fa4

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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"

src/browser/components/home.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

src/browser/index.html

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,26 @@
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

0 commit comments

Comments
 (0)