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

22
utils/infoBanner.tsx Normal file
View File

@@ -0,0 +1,22 @@
import {InfoBannerProps} from "@/constants/types";
export default function InfoBanner({
boldText,
normalText,
}: InfoBannerProps) {
return (
<div className="w-full
rounded-xl border border-l-4 border-[#142538]
border-l-[#10b981] bg-[#091624]
p-4 flex items-center shadow-sm">
<p className="text-sm font-medium text-slate-300 tracking-wide leading-relaxed">
{boldText && <strong className="text-white font-bold mr-1.5">{boldText}</strong>}
{normalText}
</p>
</div>
);
}