diff --git a/ABOUT.md b/ABOUT.md
index 10422cf9..03f3857f 100644
--- a/ABOUT.md
+++ b/ABOUT.md
@@ -1,8 +1,10 @@
-# Flood
+# Flood
+
+[](https://www.npmjs.com/flood)
[](https://github.com/jesec/flood/actions) [](https://crowdin.com/project/flood) [](https://discord.gg/Z7yR5Uf)
-Flood is a monitoring service for [rTorrent](https://github.com/rakshasa/rtorrent). It's a Node.js service that communicates with rTorrent instances and serves a decent web UI for administration. It's a work-in-progress.
+Flood is a monitoring service for [rTorrent](https://github.com/rakshasa/rtorrent). It's a Node.js service that communicates with rTorrent instances and serves a decent web UI for administration.
#### Feedback
diff --git a/client/src/javascript/components/modals/settings-modal/AboutTab.tsx b/client/src/javascript/components/modals/settings-modal/AboutTab.tsx
index ef13343c..285bd062 100644
--- a/client/src/javascript/components/modals/settings-modal/AboutTab.tsx
+++ b/client/src/javascript/components/modals/settings-modal/AboutTab.tsx
@@ -1,13 +1,35 @@
import React from 'react';
+import {version} from '../../../../../../package.json';
+
const AboutMarkdown = React.lazy(() =>
import('../../../../../../ABOUT.md').then((module) => ({default: module.react})),
);
+const FLOOD_PROJECT_URL = 'https://github.com/jesec/flood';
+
const AboutTab = () => {
return (
-
+ version}
+ CommitBadge={() =>
+ version.length > 8 ? (
+ // If user is on a rolling build, display latest version of rolling build.
+
+
+
+ ) : (
+ // If user is on a released build, display commits to project made since user's version.
+
+
+
+ )
+ }
+ />
);
};