top of page
IMG_7690.JPG

REACH THE WORLD BUT TOUCH MY COMMUNITIES FIRST

SERVICES

WHO
WE ARE

At Brahma Media LLC, our mission is to empower high school athletes by offering a vibrant media platform that elevates their visibility across various sports. Through the strategic use of media, we aim to spotlight and cultivate the talents of young athletes within our community and surrounding areas, helping them to refine and showcase their abilities to a wider audience.

ABOUT US

OUR
WORK

Check out some of our recent photos and videos, and get inspired for your own athletic journey.

IMG_0122_edited

IMG_0122_edited

IMG_0081

IMG_0081

IMG_0080

IMG_0080

GALLERY

GET IN
TOUCH

Success! Message received.

CONTACT
bottom of page
// Import the necessary Wix modules import wixData from 'wix-data'; import wixUsers from 'wix-users'; $w.onReady(function () { // Check if the current user is an admin wixUsers.currentUser.getRoles() .then((roles) => { const isAdmin = roles.some(role => role.name === "admin"); if (!isAdmin) { $w("#submitButton").disable(); $w("#errorMessage").text = "You do not have permission to add athletes."; } }); // Submit button click event with validation $w("#submitButton").onClick(() => { const name = $w("#nameInput").value; const age = Number($w("#ageInput").value); const sport = $w("#sportInput").value; const statistics = $w("#statisticsInput").value; const achievements = $w("#achievementsInput").value; const mediaCoverageLinks = $w("#mediaCoverageLinksInput").value.split(','); const photos = $w("#photosInput").value; const socialMediaLinks = $w("#socialMediaLinksInput").value.split(','); // Validation check if (!name || !age || !sport || !statistics || !achievements || mediaCoverageLinks.length === 0 || !photos || socialMediaLinks.length === 0) { $w("#errorMessage").text = "Please fill in all required fields."; return; } const newAthlete = { name: name, age: age, sport: sport, statistics: statistics, achievements: achievements, mediaCoverageLinks: mediaCoverageLinks, photos: photos, socialMediaLinks: socialMediaLinks }; wixData.insert("Athletes", newAthlete) .then(() => { $w("#successMessage").text = "Athlete added successfully!"; $w("#errorMessage").text = ""; // Clear error message }) .catch((err) => { console.error(err); $w("#errorMessage").text = "There was an error adding the athlete."; }); }); });