Skip to content

Gallery & Team

Two sections that are similar to configure: the Gallery (screenshots) and the Team (staff members).

The GALLERY section displays a set of screenshots via the gallery object.

js
gallery: {
    title: "GALLERY",
    elements: [
        { img: "image1.jpg" },
        { img: "image2.jpg" },
        { img: "image3.jpg" },
    ],
},
FieldDescription
titleSection title
elements[].imgFile name of the image, located in config/gallery_image/

IMPORTANT

Provide only the file name (image1.jpg), not the full path. The config/gallery_image/ folder is implicit.

Add an image

  1. Drop your image into config/gallery_image/ (formats .jpg, .jpeg, .png).
  2. Add { img: "my_image.jpg" } to the elements array.
  3. The fxmanifest.lua patterns (config/gallery_image/*.jpg, etc.) already cover common formats.

Team

The TEAM section introduces your staff members via the team object.

js
team: {
    title: "TEAM",
    elements: [
        { img: "logo_josk.png", name: "DVR",  grade: "Founder"   },
        { img: "logo_josk.png", name: "Josk", grade: "Developer" },
        { img: "logo_josk.png", name: "dKS",  grade: "Developer" },
    ],
},
FieldDescription
titleSection title
elements[].imgFile name of the photo, in config/team_logos/
elements[].nameMember name / username
elements[].gradeRole or position (e.g. Founder, Developer, Moderator)

TIP

Avoid spaces in avatar file names (logo_josk.png, not logo josk.png).

Add a member

  1. Drop the profile photo into config/team_logos/.
  2. Add a { img, name, grade } object to the elements array.