diff --git a/src/pages/faq.astro b/src/pages/faq.astro
index f3a7014..7493616 100644
--- a/src/pages/faq.astro
+++ b/src/pages/faq.astro
@@ -13,6 +13,16 @@ const content = [
question: 'Something looks wrong - How can I debug?',
answer: `You can debug Gitify by pressing alt + command + I
. This will open the dev tools and then you can see any logs, network requests etc.`,
},
+ {
+ id: '3',
+ question: 'How can I contribute to Gitify?',
+ answer: `You can contribute to Gitify by opening a pull request @ [gitify-app/gitify](https://github.com/gitify-app/gitify)`,
+ },
+ {
+ id: '4',
+ question: 'macOS is prompting for microphone access - what is this for?',
+ answer: `This is part of the permissions/entitlements when using the Play sound
system setting.`,
+ },
];
---