top of page
addison.jpg

Athlete Spotlight

  • Quickness off the line: His explosive speed allows him to penetrate offensive lines and apply pressure on the quarterback effectively.
     

  • Versatility: His ability to play both defensive end and linebacker positions provides his team with strategic flexibility.
     

  • Strong tackling: With nearly 100 tackles in his senior season, Addison has demonstrated consistent tackling ability and defensive awareness.
     

  • Leadership: As a senior now, he will take the leadership role, mentoring younger players and leading by example on and off the field.

addison_edited_edited_edited_edited.png
IMG_3421_edited.jpg

Athlete Spotlight

  • Scoring Ability: Araina demonstrated exceptional scoring ability by accumulating 321 points over the season. Her knack for finding and exploiting scoring opportunities makes her a consistent offensive threat.
     

  • Rebounding: With a total of 146 rebounds, including 62 offensive and 84 defensive rebounds, Araina has proven to be a dominant force on the boards.
     

  • Defense: Araina’s defensive prowess is evident with her agility and awareness which enable her to disrupt the opposition’s plays and protect the rim effectively, making her a vital part of the team's defense.
     

  • Versatility: Araina excels in multiple facets of the game, making her a versatile and invaluable player. Her ability to contribute across various aspects of the game underscores her all-around talent
     

  • Araina Ross shows immense potential for future success in basketball. Her comprehensive skill set positions her as a standout player to watch. As she continues to develop her game and gain more experience, she is likely to attract attention from top high school programs and eventually collegiate scouts.

Page Title

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors. 

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