mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
feat(templates): added url support for custom fields
This commit is contained in:
@ -70,8 +70,16 @@ const Header = () => {
|
||||
{basics.customFields.map((item) => (
|
||||
<div key={item.id} className="flex items-center gap-x-1.5">
|
||||
<i className={cn(`ph ph-bold ph-${item.icon}`, "text-primary")} />
|
||||
<span className="text-primary">{item.name}</span>
|
||||
<span>{item.value}</span>
|
||||
{isUrl(item.value) ? (
|
||||
<a href={item.value} target="_blank" rel="noreferrer noopener nofollow">
|
||||
{item.name || item.value}
|
||||
</a>
|
||||
) : (
|
||||
<>
|
||||
<span className="text-primary">{item.name}</span>
|
||||
<span>{item.value}</span>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user