top of page
Writer's pictureBrahma Media, LLC

The Strategic Ascent of Thaddeus Lewis: From Intern to Quarterbacks Coach with the Buccaneers

Updated: Jul 7




The path to NFL coaching stardom is often as arduous and competitive as the sport itself. For Thaddeus Lewis, this path has been marked by rapid advancement and the successful application of in-depth football knowledge. Starting as an intern with the Tampa Bay Buccaneers in July 2020, Lewis has ascended the coaching ranks with remarkable speed. Lewis’s journey with the Buccaneers began amidst the unprecedented challenges of the 2020 season. His dedication and insight into the game’s offensive intricacies didn’t go unnoticed, leading to his promotion as an offensive assistant. By, May 5, 2021, Lewis’s impact within the coaching staff was further recognized, earning him the role of assistant wide receivers coach. His ability to connect with players and enhance their skills played a pivotal role in this advancement. The significant leap came on February 24, 2023, when Lewis was promoted to quarterbacks coach. This role not only underscores his expertise but also places him in a position to directly influence the Buccaneers' offensive success through the development of their quarterbacks. Thaddeus Lewis’s coaching career with the Buccaneers is a blueprint for aspiring coaches everywhere. His rise through the ranks demonstrates the power of knowledge, patience, and the ability to capitalize on opportunities. As quarterbacks coach, Lewis now has the chance to leave a lasting imprint on the franchise and perhaps pave his way to even greater responsibilities in the future!








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