πŸͺͺTeam.json

The Team.json file allows you to configure the team section displayed on the loading screen.


πŸ“ Configuration Options

1. Title

  • Key: Title

  • Type: String

  • Default: "Team"

  • Description: Sets the title for the team section.

  • Example:

    "Title": "Team"

2. Subtitle

  • Key: Subtitle

  • Type: String

  • Default: "Here you can find the team of the city"

  • Description: Sets the subtitle displayed below the title.

  • Example:

    "Subtitle": "Meet the amazing people behind this project!"

3. Members

  • Key: Members

  • Type: Array of Objects

  • Description: Contains the details of each team member. Each object represents a team member with the following properties:

πŸ‘₯ Member Properties

  1. Name:

    • Key: name

    • Type: String

    • Description: The name of the team member.

    • Example:

      "name": "Sedres"
  2. Role:

    • Key: role

    • Type: String

    • Description: The role of the team member.

    • Example:

      "role": "Developer"
  3. Description:

    • Key: description

    • Type: String

    • Description: A short description of the team member.

    • Example:

      "description": "The developer of the project"
  4. Image:

    • Key: img

    • Type: String (URL)

    • Description: URL to the team member's profile image.

    • Example:

      "img": "https://i.pravatar.cc/300"
  5. Socials (Optional):

    • Key: socials

    • Type: Array of Objects

    • Description: Contains the social links for the team member.

πŸ› οΈ Social Properties

  1. Name:

    • Key: name

    • Type: String

    • Description: The name of the social platform.

    • Example:

      "name": "Discord"
  2. Icon:

    • Key: icon

    • Type: String

    • Description: Font Awesome icon class for the platform.

    • Example:

      "icon": "fa-brands fa-discord"
  3. Link:

    • Key: link

    • Type: String

    • Description: The link to the social media profile.

    • Example:

      "link": "sedres#0001"

πŸ”„ Example Configuration

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

{
  "Title": "Team",
  "Subtitle": "Here you can find the team of the city",
  "Members": [
    {
      "name": "Sedres",
      "role": "Developer",
      "description": "The developer of the project",
      "img": "https://i.pravatar.cc/300",
      "socials": [
        {
          "name": "Discord",
          "icon": "fa-brands fa-discord",
          "link": "sedres#0001"
        },
        {
          "name": "Instagram",
          "icon": "fa-brands fa-instagram",
          "link": "@SedresAC"
        }
      ]
    },
    {
      "name": "Emily",
      "role": "Tester",
      "description": "The tester of the project",
      "img": "https://i.pravatar.cc/500"
    }
  ]
}

⚠️ Notes

  • Ensure all image URLs are accessible.

  • Social links are optional but enhance the professionalism of the team section.

  • Add or remove team members by editing the Members array.

Showcase your team and give credit to the people making your server great!

Last updated