diff --git a/docs/discord-social-sdk/design-guidelines.mdx b/docs/discord-social-sdk/design-guidelines.mdx
index 83e1331fc6..8e090994c2 100644
--- a/docs/discord-social-sdk/design-guidelines.mdx
+++ b/docs/discord-social-sdk/design-guidelines.mdx
@@ -8,6 +8,7 @@ subpages:
- design-guidelines/branding-guidelines.mdx
- design-guidelines/unified-friends-list.mdx
- design-guidelines/direct-messages.mdx
+ - design-guidelines/social-settings.mdx
- design-guidelines/provisional-accounts.mdx
- design-guidelines/status-rich-presence.mdx
- design-guidelines/consoles.mdx
@@ -42,6 +43,9 @@ If you are looking for a place to get started, we recommend you start with [Prin
Best practices for enabling direct messaging between players, facilitating private communication, and enhancing social interactions.
+
+ Best practices for implementing and managing access to the Discord social settings in games using the Discord Social SDK
+
Designing around provisional accounts for users who prefer not to link their Discord accounts, allowing them to enjoy social features still.
diff --git a/docs/discord-social-sdk/design-guidelines/social-settings.mdx b/docs/discord-social-sdk/design-guidelines/social-settings.mdx
new file mode 100644
index 0000000000..b869233c7e
--- /dev/null
+++ b/docs/discord-social-sdk/design-guidelines/social-settings.mdx
@@ -0,0 +1,45 @@
+---
+sidebar_label: Social Settings
+---
+
+[Home](/docs/intro) > [Discord Social SDK](/docs/discord-social-sdk/overview) > [Design Guidelines](/docs/discord-social-sdk/design-guidelines) > Social Settings
+
+# Social Settings
+
+## Evolving with users
+
+Discord is listening to feedback and releasing settings for players to tailor their social experience to their needs. These settings will continue to change and evolve with the SDK and Discord client.
+
+Discord Social SDK settings are global, meaning they will impact all games that use the Discord Social SDK. These settings live in the Discord client.
+
+
+
+## Main entrypoint
+
+An entrypoint is required in games to
+[send players to the relevant Discord client settings page](/docs/discord-social-sdk/development-guides/sending-direct-messages#ingame-direct-message-settings).
+Only players who have their Discord account connected should see this.
+
+Exactly like the auth flow, players will be redirected to the Discord client to manage their social settings. If they do not have the client, the browser will be the fallback.
+
+
+
+## Content guidelines
+
+The official settings title for players is "Discord Social Experience." Use this language when referring to Social SDK settings to players.
+
+The description is optional, but if your game settings has the space, we recommend describing what users should expect to find when they navigate to Discord.
+
+
+
+---
+
+## Resources
+
+- [Development Guide: Direct Messages](/docs/discord-social-sdk/development-guides/sending-direct-messages)
+
+## Change Log
+
+| Date | Changes |
+|--------------|-----------------|
+| May 08, 2025 | initial release |
\ No newline at end of file
diff --git a/static/images/social-sdk/design-guidelines/SocialSettings-02.webp b/static/images/social-sdk/design-guidelines/SocialSettings-02.webp
new file mode 100644
index 0000000000..7049cf78a9
Binary files /dev/null and b/static/images/social-sdk/design-guidelines/SocialSettings-02.webp differ
diff --git a/static/images/social-sdk/design-guidelines/SocialSettings-03.webp b/static/images/social-sdk/design-guidelines/SocialSettings-03.webp
new file mode 100644
index 0000000000..85e03caad7
Binary files /dev/null and b/static/images/social-sdk/design-guidelines/SocialSettings-03.webp differ
diff --git a/static/images/social-sdk/design-guidelines/SocialSettings-04.webp b/static/images/social-sdk/design-guidelines/SocialSettings-04.webp
new file mode 100644
index 0000000000..768b583604
Binary files /dev/null and b/static/images/social-sdk/design-guidelines/SocialSettings-04.webp differ