From b5686cf81818cdf91f170a4b0117b5ac7e182fa3 Mon Sep 17 00:00:00 2001 From: Mohit Agarwal Date: Sun, 5 Jul 2026 10:15:37 +0530 Subject: [PATCH] docs: update code paths in project structure table for accuracy --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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` | ---