diff --git a/README.md b/README.md index 456f07d..73a7e85 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ The project is built with **Next.js 13** and follows its standard conventions. A | Page Route | Code Path | Purpose | |---|---|---| -| `/` | `/page.tsx` | Landing page — hero section, demo, testimonials | -| `/resume-import` | `/resume-import/page.tsx` | Upload and parse an existing resume PDF (`ResumeDropzone`) | -| `/resume-builder` | `/resume-builder/page.tsx` | Build and download your resume (`ResumeForm` + `Resume`) | -| `/resume-parser` | `/resume-parser/page.tsx` | Test ATS readability using `parseResumeFromPdf` | +| `/` | `src/app/page.tsx` | Landing page — hero section, demo, testimonials | +| `/resume-import` | `src/app/resume-import/page.tsx` | Upload and parse an existing resume PDF (`ResumeDropzone`) | +| `/resume-builder` | `src/app/resume-builder/page.tsx` | Build and download your resume (`ResumeForm` + `Resume`) | +| `/resume-parser` | `src/app/resume-parser/page.tsx` | Test ATS readability using `parseResumeFromPdf` | ---