top of page

2026 South Carolina High School Football: Top 5 Returning Players by Position


  1. Aiden Manavian — A polished passer who led the group with 4,028 yards and 41 touchdowns.

  2. Xavier Means — An accurate dual-threat who completed nearly 76% of his passes.

  3. Matt Kucia — A steady field general who reached 3,000 passing yards.

  4. Jace Grass — A proven playmaker who delivered 31 passing touchdowns.

  5. Mak Anderson — An efficient quarterback with a 76% completion rate and 31 touchdowns.

  1. Jayven Williams — A powerful workhorse who rushed for more than 2,000 yards.

  2. Trevon Williamson — An explosive scorer who found the end zone 25 times.

  3. Muntu Brown — A productive runner with speed, strength and big-play ability.

  4. Mah’ky Green — A tough runner who consistently moved the chains.

  5. Michael Martin II — A dangerous finisher who scored 30 rushing touchdowns.

  1. Raphael Puiu — An explosive target who produced 1,409 yards and 18 touchdowns.

  2. Ashton Kellermann — A reliable playmaker who finished with 70 receptions.

  3. Corey Gleaton — A big-play receiver who averaged nearly 24 yards per catch.

  4. Trey Wimbley — A consistent weapon who delivered 14 touchdowns.

  5. Ty’quarius Shannon — A home-run threat who averaged more than 26 yards per reception.

  1. Joshua Winbush — A dominant backfield disruptor who recorded 18 sacks.

  2. Jay’Sean Culp — A physical defender who piled up tackles and backfield stops.

  3. Peyton Bishop — A relentless pass rusher who consistently pressured quarterbacks.

  4. Jaiden Bryant — A quick edge defender with a strong nose for big plays.

  5. Jace Coleman — A high-motor defender who produced 32 tackles for loss.

  1. KJ Burg — A sideline-to-sideline tackling machine who produced 160 total stops.

  2. Ethan Lowder — A physical linebacker who attacks the football and creates turnovers.

  3. Evan Simmons — An aggressive defender who stays in attack mode.

  4. Kaleb Wright — A dangerous blitzer who produced eight sacks from linebacker.

  5. Lavay Penny — A football hunter who forces turnovers and flips momentum.

  1. Royce Williamson — A ball-hawking defender who grabbed eight interceptions.

  2. Jamar Grissett — A proven playmaker who recorded seven interceptions.

  3. Saiquan Johnson — An active defensive back with six interceptions in eight games.

  4. Corey Gleaton — A versatile athlete who makes game-changing plays on both sides.

  5. Kareem Dupree — A dangerous return threat after interceptions.

Comments


Follow Us:
  • X
  • Instagram
  • White Facebook Icon

©2024 BRAHMA MEDIA LLC. Powered by Gozoek.com

Never miss an update
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."; }); }); });