Fixed resume gen
Some checks failed
Docker Deploy / build-and-push (push) Has been cancelled

This commit is contained in:
2025-06-26 23:41:29 -06:00
parent b4298e78ef
commit 0d43c3af47
7 changed files with 270 additions and 230 deletions

View File

@@ -13,8 +13,8 @@ import type {
// Import Lucide Icons
import {
Home,
NotebookPen,
BriefcaseBusiness,
Newspaper,
FileUser,
CodeXml,
Terminal as TerminalIcon,
Megaphone,
@@ -68,6 +68,10 @@ export const resumeConfig: ResumeConfig = {
filename: "Atridad_Lahiji_Resume.pdf",
displayText: "Download Resume (PDF)",
},
layout: {
leftColumn: ["experience", "awards"],
rightColumn: ["skills", "education", "volunteer"],
},
sections: {
enabled: [
"summary",
@@ -75,7 +79,6 @@ export const resumeConfig: ResumeConfig = {
"education",
"skills",
"volunteer",
"profiles",
"awards",
],
summary: {
@@ -98,10 +101,7 @@ export const resumeConfig: ResumeConfig = {
title: "Volunteer Work",
enabled: true,
},
profiles: {
title: "Professional Profiles",
enabled: true,
},
awards: {
title: "Awards & Recognition",
enabled: true,
@@ -297,7 +297,7 @@ export const navigationItems: NavigationItem[] = [
name: "Posts",
path: "/posts",
tooltip: "Posts",
icon: NotebookPen,
icon: Newspaper,
enabled: true,
isActive: (path: string) =>
path.startsWith("/posts") || path.startsWith("/post/"),
@@ -307,7 +307,7 @@ export const navigationItems: NavigationItem[] = [
name: "Resume",
path: "/resume",
tooltip: "Resume",
icon: BriefcaseBusiness,
icon: FileUser,
enabled: !!(resumeConfig.tomlFile && resumeConfig.tomlFile.trim()),
},
{