Premium design intelligence for UI/UX and dashboard interfaces. Follows professional standards for SaaS and multi-tenant apps.
Extended design intelligence for building premium dashboard interfaces, adapted for the ContractorIA multi-tenant ecosystem.
ContractorIA requires a premium, production-grade aesthetic. Every UI element must be visually stunning while strictly respecting data isolation (company_id).
Design tokens defined in tailwind.config.ts:
turq-primarydeep-blueslateshadow-card, shadow-elevatedrounded-xl, rounded-2xl, rounded-[2.5rem]For dashboards, prioritize these patterns:
pro-card class with gradient accents[!CAUTION] Even in UI design, data isolation is top priority.
- Ensure all dynamically loaded content is filtered by
company_id.- Pass
companyIdto all data-fetching functions.
cursor-pointer and hover states.next/image.<div className="pro-card bg-white p-8 relative overflow-hidden">
<div className="absolute top-0 right-0 w-40 h-40 bg-turq-primary/5 rounded-bl-[100px]"></div>
{/* Content */}
</div>
<span className="px-4 py-1.5 rounded-full text-[10px] font-black tracking-widest uppercase border bg-emerald-50 text-emerald-600 border-emerald-100">
PAID
</span>
<h3 className="text-[10px] font-black text-slate-400 uppercase tracking-widest">
Section Title
</h3>
company_id validation present in all data-fetching?