diff --git a/changelog/unreleased/enhancement-feedback-link b/changelog/unreleased/enhancement-feedback-link
new file mode 100644
index 00000000000..abbc9a30b22
--- /dev/null
+++ b/changelog/unreleased/enhancement-feedback-link
@@ -0,0 +1,5 @@
+Enhancement: Feedback link
+
+We've added a feedback link in the topbar which opens a survey in a new tab. The intention is to gather feedback from users. There is a config option to disable the link (see docs "getting started").
+
+https://github.com/owncloud/web/pull/5468
diff --git a/docs/getting-started.md b/docs/getting-started.md
index ab54865001f..e55900f0f10 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -33,6 +33,8 @@ substring of a value of the authenticated user. Examples are `/Shares`, `/{{.Id}
- `options.disablePreviews` Set this option to `true` to disable previews in all the different file listing views. The only list view that is not affected
by this is the trash bin, as that doesn't allow showing previews at all.
- `options.previewFileExtensions` Specifies which filetypes will be previewed in the ui. For example to only preview jpg and txt files set this option to `["jpg", "txt"]`.
+- `options.disableFeedbackLink` Set this option to `true` to disable the feedback link in the topbar. Keeping it enabled (value `false` or absence of the option)
+ allows ownCloud to get feedback from your user base through a dedicated survey website.
## Setting up backend and running
diff --git a/packages/web-runtime/package.json b/packages/web-runtime/package.json
index ab4bcd12ef8..5ee653f8a22 100644
--- a/packages/web-runtime/package.json
+++ b/packages/web-runtime/package.json
@@ -12,7 +12,7 @@
"lodash-es": "^4.17.21",
"luxon": "^1.27.0",
"oidc-client": "1.10.1",
- "owncloud-design-system": "^8.0.0-rc2",
+ "owncloud-design-system": "^8.0.0-rc3",
"owncloud-sdk": "1.0.0-2296",
"p-queue": "^6.1.1",
"tippy.js": "^6.3.1",
diff --git a/packages/web-runtime/src/components/FeedbackLink.vue b/packages/web-runtime/src/components/FeedbackLink.vue
new file mode 100644
index 00000000000..4d387ef3cd6
--- /dev/null
+++ b/packages/web-runtime/src/components/FeedbackLink.vue
@@ -0,0 +1,35 @@
+
+