Vacancy added

This commit is contained in:
libertyoms
2025-04-27 08:51:09 +02:00
parent 809f5c6ff7
commit 1be00d7a42
20 changed files with 1203 additions and 1 deletions

View File

@ -0,0 +1,22 @@
import { COLORS } from "@/constants";
export const MetadataItem = ({
icon: Icon,
label,
value,
}: {
icon: React.ElementType;
label: string;
value: React.ReactNode;
}) => (
<div className="flex items-start space-x-2 text-sm text-gray-700 font-poppins">
<Icon
className="h-5 w-5 mt-0.5 flex-shrink-0 text-primary"
aria-hidden="true"
style={{ color: COLORS.primary }}
/>
<div>
<span className="font-semibold">{label}:</span> {value}
</div>
</div>
);