top of page
Writer's pictureBrahma Media, LLC

Empower Yourself: Embrace Your Athletic Identity Beyond Boundaries! 🏆

Yo, in this world where sports be takin' the spotlight, it's hella important to remember one thing: YOU athletes, y'all aren't just playin' the game, y'all holdin' the keys. That saying, "Use Sports, Don't Let Sports Use You," that's like a wake-up call remindin' YOU are in control, holdin' your destiny in your hands when it comes to sportsmanship and your brand.


Sports, they ain't just about the moves, they are 'bout representation of your hustle, dedication, and the drive to be on top. They can shape you into winners, on and off the court or field. It's about takin' charge, not just goin' along for the ride. When we see sports as a way to grow, build teamwork, get disciplined, and find your balance, y'all ain't just players no more – be architects of your own stories.


But let's be real, sometimes the shine of sports can lead you down a different path, where it's all 'bout the wins and the fame. That's where that saying comes in strong. "Use Sports, Don't Let Sports Use You," don't get lost in the hype. Your identity's more than just athletes, it's a whole mix of things that make you who you are.


So, let's vibe with that saying, ""Use Sports, Don't Let Sports Use You," Step into your sports journey with purpose, takin' in all the good stuff – the lessons, the grind, the vibes. Remember, sports don't control you; y'all the ones callin' the shots, whether it's a smooth crossover, a scored touchdown , or a sprint to the finish line.


Blend your game with your personal growth. Be a light, not just for your skills between those white lines, but for your deep thoughts, your realness, and your strength when things get tough. You an athlete, homie – shapin' your own path to success.


#UseSportsDon'tLetSportsUseYou

38 views0 comments

Comments


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."; }); }); });