From 4474006d34651456bde8137285e849375c3589fc Mon Sep 17 00:00:00 2001 From: Alexander Abreu Date: Tue, 20 Jan 2026 14:44:41 -0800 Subject: [PATCH] Add feedback submission metadata to site config This adds a "Submit Feedback" option in the Global nav --- gatsby-config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gatsby-config.js b/gatsby-config.js index 7da864b8b..108fcff0d 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -14,6 +14,10 @@ module.exports = { pathPrefix: process.env.PATH_PREFIX || "/firefly-services/docs/", siteMetadata: { + docs: { + title: 'Submit Feedback', + path: 'https://developer.adobe.com/firefly-services/docs/guides/support/' + }, pages: [ { title: "All Firefly Services", @@ -254,4 +258,4 @@ module.exports = { ], }, plugins: [`@adobe/gatsby-theme-aio`], -}; \ No newline at end of file +};