From b59211610d1a78e7b2c29691afb98bf7d69244f5 Mon Sep 17 00:00:00 2001 From: GovanifY Date: Mon, 22 Dec 2025 22:20:29 +0100 Subject: [PATCH] homepage: only show blog posts (#468) having a split blog post/progress report only makes it more confusing to new users when all our latest "progress reports" are blog posts. --- docusaurus.config.js | 10 ------ src/pages/index.js | 76 -------------------------------------------- 2 files changed, 86 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 8476274..754a8e7 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -208,16 +208,6 @@ const config = { to: "/blog", label: "Blog", position: "left", - items: [ - { - label: "Progress Reports", - to: "/blog/tags/progress-report", - }, - { - label: "Developer Blogs", - to: "/blog/tags/devblog", - }, - ], }, { to: "https://github.com/sponsors/PCSX2", diff --git a/src/pages/index.js b/src/pages/index.js index 058cd48..19afe55 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -40,7 +40,6 @@ import { latestProgressReport, latestBlog, previousBlog, - previousProgressReport, } from "../data/latestBlogs"; import useIsBrowser from "@docusaurus/useIsBrowser"; @@ -282,81 +281,6 @@ export default function Home() { - {/* Recent Progress Reports Section */} -
-
-

Recent Progress Reports

-

- Stay up to date on the latest improvements and fixes on the - project. -

-
- -
- {/* Latest Progress Report */} -
- - - Latest progress report image - -
-
-

- Latest Progress Report -

-

- {latestProgressReport.title} -

-
-
-
-
-
-
- - {/* Previous Progress Report */} -
- - - Previous progress report image - -
-
-

- Previous Progress Report -

-

- {previousProgressReport.title} -

-
-
-
-
-
-
-
-
- {/* About the Project Section */}