From 3c1a36daef96f10de7d25a48de191f422a06358e Mon Sep 17 00:00:00 2001 From: creatour <107131476+creatour@users.noreply.github.com> Date: Sat, 11 Apr 2026 01:42:34 +0800 Subject: [PATCH 1/2] Enhance README with project features and approach Added features, approach, and notes sections to README. --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..d10134dd --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +Features: +- Blog listing page displaying all posts +- Dynamic blog post page using route parameters +- API endpoints: + - GET /api/posts (fetch all posts) + - GET /api/posts/[id] (fetch single post) +- Basic responsive UI using Tailwind CSS +- Clean and structured code organization + +Approach: +- Used static data (posts array) as per instructions +- Implemented dynamic routing using Next.js App Router +- Built API routes inside the app directory +- Focused on clean UI, readability, and user experience + +Notes: +- No external database used (as required) +- UI enhanced with simple modern styling + +Thank you for the opportunity! From 7bc0f531d1ad6d6ab7ef4cbf988f60241a168d0d Mon Sep 17 00:00:00 2001 From: creatour <107131476+creatour@users.noreply.github.com> Date: Sat, 11 Apr 2026 01:46:20 +0800 Subject: [PATCH 2/2] Remove features and approach sections from README --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index d10134dd..8b137891 100644 --- a/README.md +++ b/README.md @@ -1,20 +1 @@ -Features: -- Blog listing page displaying all posts -- Dynamic blog post page using route parameters -- API endpoints: - - GET /api/posts (fetch all posts) - - GET /api/posts/[id] (fetch single post) -- Basic responsive UI using Tailwind CSS -- Clean and structured code organization -Approach: -- Used static data (posts array) as per instructions -- Implemented dynamic routing using Next.js App Router -- Built API routes inside the app directory -- Focused on clean UI, readability, and user experience - -Notes: -- No external database used (as required) -- UI enhanced with simple modern styling - -Thank you for the opportunity!