[PR #8488] [MERGED] docs: update production landing app #16256

Closed
opened 2026-04-13 10:28:10 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/8488
Author: @bytaesu
Created: 3/8/2026
Status: Merged
Merged: 3/8/2026
Merged by: @bytaesu

Base: mainHead: landing-docs-staging


📝 Commits (10+)

  • cfb6e98 docs: align npm downloads metric and label to yearly (#8232)
  • a08ddfb docs: remove incorrect href on sidebar (#8265)
  • c6f6426 chore: update landing app env example (#8290)
  • 6d422ae docs: match openfort icon with other sidebar icons (#8459)
  • a4f53f6 docs: migrate search to Typesense and redesign docs (#8487)
  • 781f2b1 fix: add missing SubpageItem properties for docs-sidebar compatibility
  • 1c3f723 fix: add icon prop to SubpageLink component
  • f72ac2a docs: add better-auth-invite-plugin to community plugins (#7948)
  • 1413746 docs: remove unused getSrc utility (#8230)
  • cfd3f44 blog: add RSS feed endpoint and generator (#8479)

📊 Changes

34 files changed (+2396 additions, -3189 deletions)

View changed files

📝 .cspell/names.txt (+1 -0)
📝 docs/content/docs/plugins/2fa.mdx (+35 -9)
landing/.env.example (+13 -0)
landing/app/api/docs/search/route.ts (+0 -180)
landing/app/api/docs/static.json/route.ts (+7 -0)
landing/app/blog/rss.xml/route.ts (+11 -0)
📝 landing/app/docs/[[...slug]]/page.tsx (+1 -1)
📝 landing/app/docs/layout.tsx (+20 -9)
landing/app/docs/provider.tsx (+41 -0)
📝 landing/app/globals.css (+8 -0)
📝 landing/app/layout.tsx (+4 -7)
📝 landing/app/products/[tab]/_components/products-shell.tsx (+1 -1)
landing/components/ai-chat.tsx (+573 -0)
📝 landing/components/api-method.tsx (+23 -0)
📝 landing/components/blog/blog-left-panel.tsx (+1 -1)
📝 landing/components/community-plugins-table.tsx (+11 -0)
📝 landing/components/docs/custom-sidebar.tsx (+2 -2)
📝 landing/components/docs/docs-sidebar.tsx (+74 -33)
landing/components/docs/features.tsx (+135 -0)
landing/components/docs/sidebar-content.tsx (+0 -2624)

...and 14 more files

📄 Description

No description provided


🔄 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/better-auth/better-auth/pull/8488 **Author:** [@bytaesu](https://github.com/bytaesu) **Created:** 3/8/2026 **Status:** ✅ Merged **Merged:** 3/8/2026 **Merged by:** [@bytaesu](https://github.com/bytaesu) **Base:** `main` ← **Head:** `landing-docs-staging` --- ### 📝 Commits (10+) - [`cfb6e98`](https://github.com/better-auth/better-auth/commit/cfb6e98c0fcb8b0bdbfa7c74517df1a5fd6d8e01) docs: align npm downloads metric and label to yearly (#8232) - [`a08ddfb`](https://github.com/better-auth/better-auth/commit/a08ddfb68f79b7fbbf0c5911cbc534f06d54c995) docs: remove incorrect href on sidebar (#8265) - [`c6f6426`](https://github.com/better-auth/better-auth/commit/c6f6426d608a7bd317f54ec903eae3da8a1d48f0) chore: update `landing` app env example (#8290) - [`6d422ae`](https://github.com/better-auth/better-auth/commit/6d422aec291716dd71db757eddc887054afba149) docs: match openfort icon with other sidebar icons (#8459) - [`a4f53f6`](https://github.com/better-auth/better-auth/commit/a4f53f6b79829f0bac8d1f28249d04ad4c051619) docs: migrate search to Typesense and redesign docs (#8487) - [`781f2b1`](https://github.com/better-auth/better-auth/commit/781f2b13a6016b4e3d7a18bf9d23f535d9a2ca53) fix: add missing SubpageItem properties for docs-sidebar compatibility - [`1c3f723`](https://github.com/better-auth/better-auth/commit/1c3f723b66ba219ac619d8cded8067a65139297e) fix: add icon prop to SubpageLink component - [`f72ac2a`](https://github.com/better-auth/better-auth/commit/f72ac2afb8e3d09895416cd480253295902a0387) docs: add better-auth-invite-plugin to community plugins (#7948) - [`1413746`](https://github.com/better-auth/better-auth/commit/1413746a0cf483f4ae4dd63c7f56f8764876bb27) docs: remove unused getSrc utility (#8230) - [`cfd3f44`](https://github.com/better-auth/better-auth/commit/cfd3f4493a6e721b337654eccc026b5f41026c77) blog: add RSS feed endpoint and generator (#8479) ### 📊 Changes **34 files changed** (+2396 additions, -3189 deletions) <details> <summary>View changed files</summary> 📝 `.cspell/names.txt` (+1 -0) 📝 `docs/content/docs/plugins/2fa.mdx` (+35 -9) ➕ `landing/.env.example` (+13 -0) ➖ `landing/app/api/docs/search/route.ts` (+0 -180) ➕ `landing/app/api/docs/static.json/route.ts` (+7 -0) ➕ `landing/app/blog/rss.xml/route.ts` (+11 -0) 📝 `landing/app/docs/[[...slug]]/page.tsx` (+1 -1) 📝 `landing/app/docs/layout.tsx` (+20 -9) ➕ `landing/app/docs/provider.tsx` (+41 -0) 📝 `landing/app/globals.css` (+8 -0) 📝 `landing/app/layout.tsx` (+4 -7) 📝 `landing/app/products/[tab]/_components/products-shell.tsx` (+1 -1) ➕ `landing/components/ai-chat.tsx` (+573 -0) 📝 `landing/components/api-method.tsx` (+23 -0) 📝 `landing/components/blog/blog-left-panel.tsx` (+1 -1) 📝 `landing/components/community-plugins-table.tsx` (+11 -0) 📝 `landing/components/docs/custom-sidebar.tsx` (+2 -2) 📝 `landing/components/docs/docs-sidebar.tsx` (+74 -33) ➕ `landing/components/docs/features.tsx` (+135 -0) ➖ `landing/components/docs/sidebar-content.tsx` (+0 -2624) _...and 14 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-13 10:28:10 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#16256