1
2
3
4
5
6
export default async function handler(req: Request): Promise<Response> {
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":"","cou
return new Response(JSON.stringify(resumeDetails), {
headers: { "Content-Type": "application/json" },
});
}