import { resumeData } from "../data/resume";
export function Resume() {
const { contactInfo, summary, skills, certifications, projects, workHistory, education } = resumeData;
return (
{/* Header */}
{/* Summary */}
{/* Skills */}
Skills & Strengths
{skills.map((skill) => (
{skill.category}
{skill.items.map((item) => (
{item}
))}
))}
{/* Certifications */}
{certifications && certifications.length > 0 && (
Certifications
{certifications.map((item, i) => (
-
{item}
))}
)}
{/* Projects */}
{projects && projects.length > 0 && (
Projects
{projects.map((project) => (
{project.name} | {project.stack}
{project.bullets.map((b, i) => (
-
{b}
))}
))}
)}
{/* Work History */}
Work History
{workHistory.map((job, i) => (
{job.title}
{job.company} — {job.location}
{job.dates}
{job.bullets && job.bullets.length > 0 && (
{job.bullets.map((b, idx) => (
-
{b}
))}
)}
))}
{/* Education */}
Education
{education.map((edu, i) => (
{edu.degree}
{edu.school}
{edu.details ? ` | ${edu.details}` : ""}
{edu.date}
))}
);
}
function SectionTitle({ children }: { children: React.ReactNode }) {
return (
);
}