const ui=function(){function populatePlansUI(){let html="";const planTypeContainer=document.getElementById("plans-container");dataModel.autodjPricingPlans.forEach((item=>{const{planTitle:planTitle,planSubtitle:planSubtitle,monthlyPrice:monthlyPrice,priceInfo:priceInfo,checkMark:checkMark,featuresPlan:featuresPlan,infoText:infoText,link:link,buttonText:buttonText}=item;let plansSpecificationsHTML="";let infoTextHTML="";if(featuresPlan){featuresPlan.forEach((item=>{plansSpecificationsHTML+=`\n
\n checkmark\n \n

${item}

\n
\n `}))}if(infoText){infoTextHTML+=`

${infoText}

`}html+=`\n
\n
\n

${planTitle}

\n \n

${planSubtitle}

\n \n

$${monthlyPrice}/mo.

\n \n

${priceInfo}

\n
\n \n
\n
\n ${plansSpecificationsHTML}\n
\n
\n \n
\n ${infoTextHTML}\n \n ${buttonText}\n
\n
\n `}));if(planTypeContainer){planTypeContainer.innerHTML=html}}return{populatePlansUI:populatePlansUI}}();