export function renderDashboard() { const container = document.createElement('div'); container.className = 'dashboard-container'; container.innerHTML = /*html*/`

Welcome to the Dashboard

This is the main dashboard page.

`; return container; }