diff --git a/src/Teams/SubTeams.js b/src/Teams/SubTeams.js
index df308e7..7abed12 100644
--- a/src/Teams/SubTeams.js
+++ b/src/Teams/SubTeams.js
@@ -124,8 +124,10 @@ const SubTeams = () => {
+ {/* lays out content from the .yml file gets the name of the subteam and ready for layout */}
{Object.keys(subteamsDict).map((subteamName, index) => {
const subteam = subteamsDict[subteamName];
+ //changes location of content based if the second one creates a checkerboard layout
const className = index % 2 === 0 ? "SubteamsEnd" : "";
return (