πŸ“±Socials.json

The Socials.json file lets you configure social media links displayed on the loading screen. Use this feature to promote your server's presence on Discord, YouTube, Twitch, and more.


πŸ“ Configuration Options

1. Social Media Array

  • Key: Socials

  • Type: Array of Objects

  • Description: Each object represents a social media platform and contains the following properties:

πŸ“± Social Media Properties

  1. Icon:

    • Key: icon

    • Type: String

    • Description: Font Awesome icon class.

    • Example:

      "icon": "fa-brands fa-discord"
  2. Text:

    • Key: text

    • Type: String

    • Description: Display name of the platform.

    • Example:

      "text": "Discord"
  3. Value:

    • Key: value

    • Type: String

    • Description: Internal identifier for the platform.

    • Example:

      "value": "discord"
  4. URL:

    • Key: url

    • Type: String

    • Description: Link to the platform page.

    • Example:

      "url": "https://discord.com/invite/ypqBF8gVCB"

πŸ”„ Example Configuration

Here’s an example of a complete Socials.json file:

{
  "Socials": [
    {
      "icon": "fa-brands fa-discord",
      "text": "Discord",
      "value": "discord",
      "url": "https://discord.com/invite/ypqBF8gVCB"
    },
    {
      "icon": "fa-brands fa-youtube",
      "text": "YouTube",
      "value": "youtube",
      "url": "https://www.youtube.com/@sedres13"
    },
    {
      "icon": "fa-brands fa-twitch",
      "text": "Twitch",
      "value": "twitch",
      "url": "https://www.twitch.tv/sedres13"
    },
    {
      "icon": "fa-brands fa-instagram",
      "text": "Instagram",
      "value": "instagram",
      "url": "https://www.instagram.com/sedresAC/"
    },
    {
      "icon": "fa-brands fa-twitter",
      "text": "Twitter",
      "value": "twitter",
      "url": "https://twitter.com/sedres13"
    }
  ]
}

⚠️ Notes

  • Ensure all URLs are valid and accessible.

  • Use proper Font Awesome classes for the icon field.

  • Add or remove social platforms by editing the Socials array.

Promote your server’s community using this feature!

Last updated