Welcome To Sandra Rathe Team Training Hub
Select any article from the right side panel to open the complete training article here.
You can use this system for onboarding, SOPs, CRM instructions,
marketing guides, transaction workflows, and more.
const articles = [
{ title: "How To Add Leads In FUB", category: "CRM Training",
content: `
How To Add Leads In FUB
Step 1: Open Follow Up Boss dashboard.
Step 2: Click Add Contact.
Step 3: Enter contact information.
Step 4: Assign correct lead source.
Step 5: Add notes and follow-up tasks.
` },
{ title: "Website Branding Guidelines", category: "Branding",
content: `
Website Branding Guidelines
Always use REAL Broker branding.
Remove old Keller Williams references.
Maintain luxury and clean styling.
Use consistent fonts and spacing.
` },
{ title: "Luxury Listing Post Creation", category: "Marketing",
content: `
Luxury Listing Post Creation
Use premium quality property images.
Highlight waterfront views and pools.
Keep captions elegant and concise.
Focus on lifestyle and luxury presentation.
` }
];
const articleList = document.getElementById("articleList"); const articleContent = document.getElementById("articleContent");
articles.forEach((article, index) => {
const item = document.createElement("div");
item.classList.add("article-item");
if(index === 0){ item.classList.add("active"); }
item.innerHTML = `
`;
item.addEventListener("click", function(){
document.querySelectorAll(".article-item").forEach(el=>{ el.classList.remove("active"); });
item.classList.add("active");
articleContent.innerHTML = article.content;
});
articleList.appendChild(item);
});
articleContent.innerHTML = articles[0].content;