Preparation for proper release

This commit is contained in:
2023-08-05 18:49:04 +01:00
parent 25cda7ef65
commit 25b1250df7
20 changed files with 366 additions and 508 deletions

View File

@@ -17,11 +17,11 @@ const Education : FC<EducationArgs> = (props) => {
const getCountryEmoji = () => {
switch (props.city) {
case "Warsaw":
return "🇵🇱";
return ", Poland";
case "London":
return "🏴󠁧󠁢󠁥󠁮󠁧󠁿";
return ", England, UK󠁧󠁢󠁥󠁮󠁧󠁿";
case "Edinburgh":
return "🏴󠁧󠁢󠁳󠁣󠁴󠁿";
return ", Scotland, UK󠁧󠁢󠁳󠁣󠁴󠁿";
}
};
@@ -43,7 +43,7 @@ const Education : FC<EducationArgs> = (props) => {
}
</div>
<span className={styles.otherDetails}>
<div className={styles.location}>{props.city} {getCountryEmoji()}</div>
<div className={styles.location}>{props.city}{getCountryEmoji()}</div>
<hr/>
{props.endDate ? props.startDate + " - " + props.endDate : "Since " + props.startDate}
</span>