1export default async function handler(req: Request): Promise<Response> {
2 const resumeDetails = {"basics":{"name":"James Thomas Seeley","label":"Web Developer","image":"","email":"hello@tseeley.com","phone":"","url":"https://tseeley.com","summary":"","location":{"address":"","postalCode":"","city":"","countryCode":"","region":""},"profiles":[{"network":"GitHub","username":"iamseeley","url":""},{"network":"LinkedIn","username":"James Thomas Seeley","url":""}]},"work":[{"name":"Wando","position":"Web Developer","url":"","startDate":"2022","endDate":"present","summary":"","highlights":["Crafted an event management platform with secure authentication and full CRUD capabilities, streamlining client operations","Created an interactive public website to display events and menu items, incorporating a user-friendly interface for online inquiries","Developed a responsive and accessibility-focused website for a law firm, resulting in a 20% increase in client inquiries"]},{"name":"Mindpool","position":"Business Strategy Intern","url":"","startDate":"2022","endDate":"2022","summary":"","highlights":["Built a category defining, business to business growth strategy focused on ESG"]}],"volunteer":[],"education":[{"institution":"Tickle College of Engineering - University of Tennessee, Knoxville","url":"","area":"Computer Science","studyType":"M.S.","startDate":"","endDate":"2025","score":"","courses":[]},{"institution":"Haslam College of Business - University of Tennessee, Knoxville","url":"","area":"Business Administration","studyType":"B.S.","startDate":"","endDate":"2023","score":"cum laude","courses":[]},{"institution":"Danish Institute for Study Abroad","url":"","area":"Innovation and Entrepreneurship in Europe","studyType":"","startDate":"","endDate":"2022","score":"","courses":[]}],"awards":[],"publications":[],"skills":[{"name":"Web Development","level":"","keywords":["HTML5","CSS","Tailwind CSS","React","Next.js","Vite"]},{"name":"Programming","level":"","keywords":["JavaScript","TypeScript","Python","Go"]},{"name":"Tools & Software","level":"","keywords":["Git","Docker","Figma","Adobe Suite","Excel"]}],"languages":[],"interests":[],"references":[],"projects":[{"name":"wando-ui","startDate":"","endDate":"2023","description":"Component collection and CLI application written in TypeScript","highlights":["Designed and implemented composable styles using Tailwind CSS, clsx, and class-variance-authority, enhancing modularity and scalability","Developed a publicly available CLI tool leveraging Node.js for efficient package management and script execution, allowing users to import components easily into their own projects"],"url":"https://github.com/iamseeley/wando-ui"},{"name":"go-forth","startDate":"","endDate":"2023","description":"Static site generator written in Go","highlights":["Engineered a static site generator featuring Markdown-to-HTML conversion, YAML front matter parsing, automated build processes, and efficient content caching, optimizing performance"],"url":"https://github.com/iamseeley/go-forth2.0"}],"certificates":[{"name":"BootDev, JavaScript, Python, Algorithms","date":"2023","issuer":"","url":""},{"name":"SuperHi, Foundation, HTML, CSS + Javascript","date":"2022","issuer":"","url":""}]};
3 return new Response(JSON.stringify(resumeDetails), {
4 headers: { "Content-Type": "application/json" },