diff --git a/CHANGELOG.md b/CHANGELOG.md
index c055fe2..4736d49 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
# CHANGELOG.md
+## 1.1.0 (2022-10-26) - Lunchtime Updates
+
+Features:
+
+ - Navigation Updates & Improvements (Logo, Active Class, etc) - `next/navigation`
+ - Post/Item Listing Output Cleanup (better UI/UX for listings)
+ - Post/Item Listing Pagination Support
+ - Post/Item Components / Shared Code (`SinglePost.js` and `NewsList.js`)
+
## 1.0.0 (2022-10-25)
Features:
diff --git a/README.md b/README.md
index a43b6eb..d90718a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Rehacker
-Note: This is an early *NextJS 13* test build/learning expirement with all of the changes; feel free to fork, make changes, point out bugs/idiotic configurations, etc. :)
+Note: This is an early *NextJS 13* test build/learning expirement with all of the recent changes/additions; feel free to fork, make changes, point out bugs/idiotic configurations, etc. :)
## Demo URL
@@ -20,13 +20,13 @@ Note: This is an early *NextJS 13* test build/learning expirement with all of t
`npm run build`
-### Todo's
+### Current Todo's
-* Threaded Comments & Comment Children
-* Pagination (Ask, Show, Top, Best, etc)
+* Threaded Comments (and ability to `Load More`)
+* Comments Styling & Readability
+* Comments JSON Undefined Issue
* Better Organization of getData* Functions
* SEO / New `HEAD` Setup (`head.js`)
-
-### Known Issues
-
-* Comments Loading (when large number of requests, oddity with undefined JSON)
\ No newline at end of file
+* Single News Item Styling & Updates
+* Mobile/Responsive Fixes
+* Performance Updates & Caching
\ No newline at end of file
diff --git a/app/ask/page.js b/app/ask/page.js
index 8561837..ce00352 100644
--- a/app/ask/page.js
+++ b/app/ask/page.js
@@ -1,6 +1,6 @@
import { use } from 'react';
-import SinglePost from "../../components/posts/SinglePost"
+import NewsList from "../../components/posts/NewsList"
async function getNewsItems() {
@@ -10,25 +10,13 @@ async function getNewsItems() {
}
export default function Page() {
+
var newsItems = use(getNewsItems());
- newsItems = newsItems.slice(0, 30);
return (
<>
-
-