first commit

This commit is contained in:
2026-02-14 16:15:31 +05:30
commit 8f4cf07ec0
197 changed files with 17228 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const ProfileInfoCard = ({ title, value }) => (
<div className="bg-white p-4 rounded-xl shadow-md flex justify-between items-center">
<span className="text-gray-700 font-medium">{title}</span>
<span className="text-gray-900 font-semibold">{value || "Not provided"}</span>
</div>
);
export default ProfileInfoCard;