πͺͺ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
Name:
Key:
name
Type: String
Description: The name of the team member.
Example:
"name": "Sedres"
Role:
Key:
role
Type: String
Description: The role of the team member.
Example:
"role": "Developer"
Description:
Key:
description
Type: String
Description: A short description of the team member.
Example:
"description": "The developer of the project"
Image:
Key:
img
Type: String (URL)
Description: URL to the team member's profile image.
Example:
"img": "https://i.pravatar.cc/300"
Socials (Optional):
Key:
socials
Type: Array of Objects
Description: Contains the social links for the team member.
π οΈ Social Properties
Name:
Key:
name
Type: String
Description: The name of the social platform.
Example:
"name": "Discord"
Icon:
Key:
icon
Type: String
Description: Font Awesome icon class for the platform.
Example:
"icon": "fa-brands fa-discord"
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