diff --git a/webapp/src/App.css b/webapp/src/App.css
index 7ff64ba..ae01404 100644
--- a/webapp/src/App.css
+++ b/webapp/src/App.css
@@ -36,6 +36,22 @@ main {
header {
text-align: center;
+ position: relative;
+}
+
+.git-link {
+ position: absolute;
+ top: 0;
+ right: 0;
+ font-size: 0.75rem;
+ color: var(--text-muted);
+ text-decoration: none;
+ opacity: 0.6;
+ transition: opacity 0.2s;
+}
+
+.git-link:hover {
+ opacity: 1;
}
header h1 {
diff --git a/webapp/src/App.jsx b/webapp/src/App.jsx
index d36cf39..26ac697 100644
--- a/webapp/src/App.jsx
+++ b/webapp/src/App.jsx
@@ -93,6 +93,7 @@ function App() {