Update resume and make pdf template easier to modify
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m46s

This commit is contained in:
2025-06-30 14:47:19 -06:00
parent 1ffac7f118
commit 702062ab9a
5 changed files with 235 additions and 293 deletions

View File

@@ -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