Dasboard
AiNoteBridge / Home
--:--:--
-- --- ----
AiNoteBridge
TAPS™ · Target Point System · v3.1 · 17 Systems · LIVE
${newLeads}
NEW LEADS
${verifiedLeads}
VERIFIED
${totalBuyers}
BUYERS
Deal Pipeline
LeadsVerifiedMatchedExecuted
${activeDeals} active
${closedDeals} closed
${totalLeads} leads
${totalBuyers} buyers
Recent Leads
${store.leads.slice(0,5).map(l => `
`).join('')}
${l.name}
${l.status}${l.address || 'No address'}
NoteBridge provides introductions only and does not negotiate or advise on pricing.
`;
}
// ========== CLOCK ==========
function updateClock() {
const now = new Date();
document.getElementById('headerClock').textContent = now.toLocaleTimeString('en-US', { hour12: false, hour:'2-digit', minute:'2-digit', second:'2-digit' });
document.getElementById('headerDate').textContent = now.toLocaleDateString('en-US', { month:'short', day:'numeric', year:'numeric' });
}
setInterval(updateClock, 1000);
updateClock();
// Initialize
(function init() {
if (store.leads.length === 0) {
store.leads = [
{ id:1, name:'Wei Chen', address:'1205 Sahara Ave, Las Vegas', status:'new' },
{ id:2, name:'Maria Rodriguez', address:'892 Flamingo Blvd, Las Vegas', status:'contacted' },
{ id:3, name:'John Smith', address:'4521 Desert Inn Rd, Las Vegas', status:'verified' },
{ id:4, name:'Robert Johnson', address:'3300 Spring Mountain Rd, Las Vegas', status:'verified' },
{ id:5, name:'Linda Davis', address:'7425 W Charleston Blvd, Las Vegas', status:'contacted' }
];
}
if (store.buyers.length === 0) {
store.buyers = [
{ id:101, name:'Capella Mortgage' },
{ id:102, name:'FNAC National' },
{ id:103, name:'Oak Grove Capital' },
{ id:104, name:'Pine Street Funding' }
];
}
if (store.deals.length === 0) {
store.deals = [
{ id:201, leadName:'John Smith', amount:'385,000', address:'4521 Desert Inn Rd', buyerName:'Capella Mortgage', stage:'matching' },
{ id:202, leadName:'Maria Rodriguez', amount:'520,000', address:'892 Flamingo Blvd', buyerName:'FNAC National', stage:'matching' }
];
}
localStorage.setItem('taps_leads', JSON.stringify(store.leads));
localStorage.setItem('taps_buyers', JSON.stringify(store.buyers));
localStorage.setItem('taps_deals', JSON.stringify(store.deals));
localStorage.setItem('taps_vault', JSON.stringify(store.vault));
renderHome();
})();