top of page
Writer's pictureBrahma Media, LLC

Touchdown Titans: Javion Martin, Azarian Yates

Updated: Dec 4, 2023


The Evolution of a Crestwood Quarterback

In the world of high school football, the growth of a player is as crucial as their current skill set. At Crestwood Knights High School, one quarterback has exemplified this growth trajectory, showcasing a remarkable improvement from his freshman to senior years. Starting with a modest QB rating of 87.2 and a completion percentage of 56.7%, he developed into a senior year standout with a 63.4% completion rate and a QB rating of 121.1.

The Versatility of a Crestwood Running Back

Complementing the quarterback's story is the tale of a versatile running back. Over three varsity seasons, he amassed 2289 rushing yards, averaging 6.7 yards per carry, and scored an impressive 38 touchdowns. Not just a rusher, he also contributed to the receiving game, adding depth to his on-field presence. His senior year was a highlight, with 1365 rushing yards, 28 touchdowns, and an average of 105.0 yards per game.

The Impact of These Athletes

The stories of these two athletes from Crestwood Knights High School are not just about numbers. They reflect dedication, adaptability, and a growth mindset. For college scouts and sports enthusiasts, these are the qualities that translate into potential future success. As they continue their journey, the skills and experiences gained at Crestwood will undoubtedly shape their athletic careers.

Conclusion

At Grade A Scouting, we believe in recognizing and appreciating the journey of young athletes. The quarterback and running back from Crestwood Knights are perfect examples of how high school sports can serve as a launching pad for greater achievements. Keep an eye on these rising stars!



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