[PR #3555] [MERGED] New chat home page #4318

Closed
opened 2026-02-22 18:35:35 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3555
Author: @shatfield4
Created: 3/27/2025
Status: Merged
Merged: 4/9/2025
Merged by: @timothycarambat

Base: masterHead: 3536-feat-new-chat-home-page


📝 Commits (10+)

  • 0d9c142 wip getting started checklist page
  • 8e444ce Merge branch 'master' into 3536-feat-new-chat-home-page
  • 67ab009 lint
  • d2c135f add new ui skeleton for new home page/checklist
  • d7b2ea3 make legacy home page appearance setting
  • 61e552b dynamic checklist rendering/close checklist
  • 7bb251b make home page functional + update cta buttons in ws settings
  • 3867188 lint
  • 5e3491b remove unneeded routes
  • 95c384c wip fixing checklist items (create ws and embed doc broken) + news section updates

📊 Changes

25 files changed (+1400 additions, -17 deletions)

View changed files

📝 .github/workflows/build-and-push-image.yaml (+1 -0)
📝 .github/workflows/dev-build.yaml (+2 -1)
extras/support/announcements/2025-04-08.json (+26 -0)
extras/support/announcements/assets/mcp.jpg (+0 -0)
extras/support/announcements/list.txt (+1 -0)
📝 frontend/package.json (+1 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+17 -5)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx (+11 -0)
📝 frontend/src/index.css (+61 -0)
frontend/src/media/announcements/placeholder-1.png (+0 -0)
frontend/src/media/announcements/placeholder-2.png (+0 -0)
frontend/src/media/announcements/placeholder-3.png (+0 -0)
frontend/src/pages/Main/Home/Checklist/ChecklistItem/icons/SlashCommand.jsx (+28 -0)
frontend/src/pages/Main/Home/Checklist/ChecklistItem/index.jsx (+81 -0)
frontend/src/pages/Main/Home/Checklist/constants.js (+162 -0)
frontend/src/pages/Main/Home/Checklist/index.jsx (+213 -0)
frontend/src/pages/Main/Home/ExploreFeatures/index.jsx (+124 -0)
frontend/src/pages/Main/Home/QuickLinks/index.jsx (+98 -0)
frontend/src/pages/Main/Home/Resources/index.jsx (+32 -0)
frontend/src/pages/Main/Home/Updates/index.jsx (+225 -0)

...and 5 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #3536

What is in this change?

  • Implement new home page
  • Implement walkthrough checklist for first time users
  • Light mode implementation

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/3555 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 3/27/2025 **Status:** ✅ Merged **Merged:** 4/9/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `3536-feat-new-chat-home-page` --- ### 📝 Commits (10+) - [`0d9c142`](https://github.com/Mintplex-Labs/anything-llm/commit/0d9c142ffb8059f1cb057dc2a44fc2f4635e1b08) wip getting started checklist page - [`8e444ce`](https://github.com/Mintplex-Labs/anything-llm/commit/8e444ce7f1ccd4c0984dfd7691642dc77c0ce519) Merge branch 'master' into 3536-feat-new-chat-home-page - [`67ab009`](https://github.com/Mintplex-Labs/anything-llm/commit/67ab009791e50852e4a2f8a894ca2a94697d5a50) lint - [`d2c135f`](https://github.com/Mintplex-Labs/anything-llm/commit/d2c135f84280eb3865c90f36bf03fa4ef0e133b1) add new ui skeleton for new home page/checklist - [`d7b2ea3`](https://github.com/Mintplex-Labs/anything-llm/commit/d7b2ea3d2dcb9f141aa3deebdd00064052091d75) make legacy home page appearance setting - [`61e552b`](https://github.com/Mintplex-Labs/anything-llm/commit/61e552b26e682703b9e1296b121b4c309048341e) dynamic checklist rendering/close checklist - [`7bb251b`](https://github.com/Mintplex-Labs/anything-llm/commit/7bb251b637aaef241bcf4bbb50f7b40ea346961a) make home page functional + update cta buttons in ws settings - [`3867188`](https://github.com/Mintplex-Labs/anything-llm/commit/3867188e5c3228df33af236c71b24ac73c44154b) lint - [`5e3491b`](https://github.com/Mintplex-Labs/anything-llm/commit/5e3491be13501c14b76bc2534f08f07d83f38206) remove unneeded routes - [`95c384c`](https://github.com/Mintplex-Labs/anything-llm/commit/95c384c6f014aa023a4b649572ef35afd95235c5) wip fixing checklist items (create ws and embed doc broken) + news section updates ### 📊 Changes **25 files changed** (+1400 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build-and-push-image.yaml` (+1 -0) 📝 `.github/workflows/dev-build.yaml` (+2 -1) ➕ `extras/support/announcements/2025-04-08.json` (+26 -0) ➕ `extras/support/announcements/assets/mcp.jpg` (+0 -0) ➕ `extras/support/announcements/list.txt` (+1 -0) 📝 `frontend/package.json` (+1 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+17 -5) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx` (+11 -0) 📝 `frontend/src/index.css` (+61 -0) ➕ `frontend/src/media/announcements/placeholder-1.png` (+0 -0) ➕ `frontend/src/media/announcements/placeholder-2.png` (+0 -0) ➕ `frontend/src/media/announcements/placeholder-3.png` (+0 -0) ➕ `frontend/src/pages/Main/Home/Checklist/ChecklistItem/icons/SlashCommand.jsx` (+28 -0) ➕ `frontend/src/pages/Main/Home/Checklist/ChecklistItem/index.jsx` (+81 -0) ➕ `frontend/src/pages/Main/Home/Checklist/constants.js` (+162 -0) ➕ `frontend/src/pages/Main/Home/Checklist/index.jsx` (+213 -0) ➕ `frontend/src/pages/Main/Home/ExploreFeatures/index.jsx` (+124 -0) ➕ `frontend/src/pages/Main/Home/QuickLinks/index.jsx` (+98 -0) ➕ `frontend/src/pages/Main/Home/Resources/index.jsx` (+32 -0) ➕ `frontend/src/pages/Main/Home/Updates/index.jsx` (+225 -0) _...and 5 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3536 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Implement new home page - Implement walkthrough checklist for first time users - Light mode implementation ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:35 -05:00
yindo closed this issue 2026-02-22 18:35:35 -05:00
yindo changed title from [PR #3555] New chat home page to [PR #3555] [MERGED] New chat home page 2026-06-05 15:17:58 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4318