Update resume and make pdf template easier to modify
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m46s
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m46s
This commit is contained in:
@@ -12,16 +12,16 @@ interface ResumeData {
|
||||
name: string;
|
||||
email: string;
|
||||
website?: string;
|
||||
profiles: {
|
||||
profiles?: {
|
||||
network: string;
|
||||
username: string;
|
||||
url: string;
|
||||
}[];
|
||||
};
|
||||
summary: {
|
||||
summary?: {
|
||||
content: string;
|
||||
};
|
||||
experience: {
|
||||
experience?: {
|
||||
company: string;
|
||||
position: string;
|
||||
location: string;
|
||||
@@ -29,23 +29,23 @@ interface ResumeData {
|
||||
description: string[];
|
||||
url?: string;
|
||||
}[];
|
||||
education: {
|
||||
education?: {
|
||||
institution: string;
|
||||
degree: string;
|
||||
field: string;
|
||||
date: string;
|
||||
details?: string[];
|
||||
}[];
|
||||
skills: {
|
||||
skills?: {
|
||||
name: string;
|
||||
level: number;
|
||||
}[];
|
||||
volunteer: {
|
||||
volunteer?: {
|
||||
organization: string;
|
||||
position: string;
|
||||
date: string;
|
||||
}[];
|
||||
awards: {
|
||||
awards?: {
|
||||
title: string;
|
||||
organization: string;
|
||||
date: string;
|
||||
@@ -111,7 +111,7 @@ if (!data) {
|
||||
)
|
||||
}
|
||||
{
|
||||
data.basics.profiles.map((profile) => {
|
||||
data.basics.profiles?.map((profile) => {
|
||||
const iconName = `simple-icons:${profile.network.toLowerCase()}`;
|
||||
return (
|
||||
<a
|
||||
|
||||
Reference in New Issue
Block a user