Building Owner and Property Manager Screens are added

This commit is contained in:
2026-07-16 18:09:03 +05:30
parent 104f8f7abf
commit 3222da96ab
22 changed files with 516 additions and 140 deletions

14
utils/cardHeader.tsx Normal file
View File

@@ -0,0 +1,14 @@
export function CardHeader({ title, subtitle }: { title: string; subtitle?: string }) {
return (
<div className="flex justify-between items-baseline mb-2 border-b border-[#162942]/50 pb-3">
<h3 className="text-white text-base font-semibold tracking-wide">{title}</h3>
{subtitle && (
<span className="text-[#4e6178] text-xs font-medium uppercase tracking-wider">
{subtitle}
</span>
)}
</div>
);
}