Add languages

This commit is contained in:
Dejvino
2023-05-26 05:49:37 +02:00
parent 296b9862c9
commit afff716c09
4 changed files with 6 additions and 1 deletions
+3
View File
@@ -12,6 +12,9 @@ export default function Skills() {
{person.skills.secondary && (
<TagCloud title='Secondary' icon='bookmark-plus' tags={person.skills.secondary} />
)}
{person.skills.languages && (
<TagCloud title='Languages' icon='bookmarks' tags={person.skills.languages} />
)}
{person.skills.others && (
<TagCloud title='Others' icon='bookmark' tags={person.skills.others} />
)}
+1 -1
View File
@@ -10,7 +10,7 @@ export type Props = {
}
function Tag(props: {text: string}) {
const tagKey = 'tag_' + props.text;
const tagKey = 'tag ' + props.text;
const elementRef = useAutoFocus(tagKey)
return (
<span ref={elementRef} className='badge text-bg-light'>{props.text}</span>