Skip to content

Commit

Permalink
rename to "NDNts NFD Status Page"
Browse files Browse the repository at this point in the history
  • Loading branch information
yoursunny committed Jun 18, 2020
1 parent c0971b6 commit ff7cf55
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Better NFD Status Page
# NDNts NFD Status Page

[![Travis build status](https://img.shields.io/travis/com/yoursunny/NDNts-NFD-status-page?style=flat&logo=Travis)](https://travis-ci.com/yoursunny/NDNts) [![GitHub code size](https://img.shields.io/github/languages/code-size/yoursunny/NDNts-NFD-status-page?style=flat&logo=GitHub)](https://github.com/yoursunny/NDNts/) [![Testing Powered By SauceLabs](https://img.shields.io/badge/browser%20testing-SauceLabs-E2231A?style=flat&logo=Sauce%20Labs)](https://saucelabs.com/)

Expand Down
4 changes: 2 additions & 2 deletions src/components/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export function About() {
const version = process.env.GIT_COMMIT;
return (
<Fragment>
<h1>About Better NFD Status Page</h1>
<h1>About NDNts NFD Status Page</h1>
<ul style="line-height:2em;">
<li><a href="https://yoursunny.com/p/NDNts/NFD-status-page/">Project Homepage</a></li>
<li><a href="https://github.com/yoursunny/NDNts-NFD-status-page">GitHub repository</a></li>
<li>Better NFD Status Page version {version}</li>
<li>NDNts NFD Status Page version {version}</li>
<li>Powered by <a href="https://yoursunny.com/p/NDNts/">NDNts</a> and modern web technologies</li>
</ul>
</Fragment>
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function Footer({ requests: { host, interval } }: Props) {
return (
<footer class="pure-g">
<div class="pure-u-1">
Better NFD status page,
NDNts NFD status page,
{" "}
{host},
refreshing every {prettyMilliseconds(interval)}
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Better NFD Status Page</title>
<title>NDNts NFD Status Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="./favicon.ico">
<body>
Expand Down
1 change: 1 addition & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ window.addEventListener("load", () => {
interval: intervalMs,
history: Math.ceil(30000 / intervalMs),
});
document.title = `NFD Status: ${requests.host}`;
requests.start();
render(<App requests={requests}/>, document.body);
});

0 comments on commit ff7cf55

Please sign in to comment.