import React from "react"; const contactInfo = { location: "Amarillo, TX", phone: "806.654.2813", email: "jholt1008@gmail.com", linkedin: "https://www.linkedin.com/in/jody-holt-9b19b0256", }; const summary = `Detail-oriented software developer skilled in building full-stack applications using React, TypeScript, Node/Express, SQL, and Docker. Experienced in designing responsive user interfaces, structuring maintainable front-end architectures, and developing reliable, modular APIs. Strong communicator with proven ability to solve problems quickly, learn new technologies efficiently, and deliver clean, scalable code across multiple projects.`; const skills = [ { category: "Front-End Development", items: ["React", "TypeScript", "Responsive UI/UX", "Component Architecture", "Entity Framework Core", "TailwindCSS"], }, { category: "Back-End & APIs", items: ["Node.js", "Express.js", "RESTful API", "Authentication Flows", "Data Validation", "C#", ".NET Core"], }, { category: "Database & Data Modeling", items: ["SQL", "PostgreSQL", "CRUD Operations", "Query Optimization", "Object-Oriented Analysis & Design"], }, { category: "DevOps & Tools", items: ["Docker Compose", "Git/GitHub", "Software Migration", "Multi-Container Setups"], }, { category: "Software Engineering", items: ["Clear Communication", "Modular Code Design", "Collaboration", "Rapid Learning", "Problem-Solving"], }, ]; const accomplishments = [ "Meta's Front-End Web Development and Data Engineering certificate programs", "Built responsive React applications featuring structured component trees & dynamic routing", "Designed SQL databases with optimal CRUD operations & well-structured queries", "Containerized full-stack apps with Docker Compose for optimal scaling, resolved network, environment, version control, and dependency issues", "Created reusable UI components and interactive features that improved consistency and flow, user-friendly animations and enticing UX", ]; const workHistory = [ { title: "Training Specialist", company: "Subway", location: "Canyon, TX", dates: "2024–Present" }, { title: "Head Lifeguard", company: "Johnson Park Youth Center", location: "Borger, TX", dates: "Seasonal 2022–2025" }, { title: "Sacker/Grocery Stocker", company: "United Supermarkets", location: "Canyon, TX", dates: "2023–2024" }, ]; const education = [ { degree: "M.S. in Computer Information Systems and Business Analytics", school: "West Texas A&M University", date: "May 2027" }, { degree: "B.S. in Computer Information Systems", school: "West Texas A&M University", date: "May 2026" }, ]; export function Resume() { return (
{/* Header */}

Resume

{contactInfo.location} {contactInfo.phone} {contactInfo.email}
{/* Summary */}
Summary

{summary}

{/* Skills */}
Skills & Strengths
{skills.map((skill) => (

{skill.category}

{skill.items.map((item) => ( {item} ))}
))}
{/* Accomplishments */}
Professional Accomplishments
{/* Work History */}
Work History
{workHistory.map((job, i) => (

{job.title}

{job.company} — {job.location}

{job.dates}
))}
{/* Education */}
Education
{education.map((edu, i) => (

{edu.degree}

{edu.school}

{edu.date}
))}
); } function SectionTitle({ children }: { children: React.ReactNode }) { return (

{children}

); }