[PR #354] [MERGED] docs: add TanStack Start integration page #3247

Closed
opened 2026-03-13 10:45:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/354
Author: @LovelessCodes
Created: 10/27/2024
Status: Merged
Merged: 10/29/2024
Merged by: @Bekacru

Base: mainHead: patch-1


📝 Commits (10+)

  • 4037914 docs: add tanstack start integration guide
  • 14e4533 docs: add tanstack start to sidebar
  • f6daeb3 docs: add tanstack icon
  • 99c333f docs: fix tanstack icon props
  • 921ad0a docs: fix tanstack start icon
  • c7b257c feat: add tanstack start example
  • f90ee5e feat: add readme to tanstack start example
  • 4a065f6 example: update tanstack-example
  • 3e7aea8 docs: added tanstack-start to installation page
  • 58cf3d0 Merge remote-tracking branch 'origin/main' into patch-1

📊 Changes

43 files changed (+2884 additions, -196 deletions)

View changed files

📝 docs/components/features.tsx (+24 -23)
📝 docs/components/icons.tsx (+36 -0)
📝 docs/components/sidebar-content.tsx (+5 -1)
📝 docs/components/techstack-icons.tsx (+4 -0)
📝 docs/content/docs/basic-usage.mdx (+15 -1)
📝 docs/content/docs/installation.mdx (+17 -1)
docs/content/docs/integrations/tanstack.mdx (+29 -0)
examples/tanstack-example/README.md (+27 -0)
examples/tanstack-example/app.config.ts (+12 -0)
examples/tanstack-example/app/api.ts (+6 -0)
examples/tanstack-example/app/client.tsx (+12 -0)
examples/tanstack-example/app/components/login-form.tsx (+78 -0)
examples/tanstack-example/app/components/register-form.tsx (+90 -0)
examples/tanstack-example/app/components/ui/button.tsx (+58 -0)
examples/tanstack-example/app/components/ui/card.tsx (+88 -0)
examples/tanstack-example/app/components/ui/input.tsx (+27 -0)
examples/tanstack-example/app/components/ui/label.tsx (+26 -0)
examples/tanstack-example/app/components/ui/navigation-menu.tsx (+129 -0)
examples/tanstack-example/app/components/ui/sonner.tsx (+31 -0)
examples/tanstack-example/app/lib/client/auth.ts (+5 -0)

...and 23 more files

📄 Description

This is an integration page for better auth & TanStack Start


🔄 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/354 **Author:** [@LovelessCodes](https://github.com/LovelessCodes) **Created:** 10/27/2024 **Status:** ✅ Merged **Merged:** 10/29/2024 **Merged by:** [@Bekacru](https://github.com/Bekacru) **Base:** `main` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`4037914`](https://github.com/better-auth/better-auth/commit/4037914dd2e13e93d39f118b900e60ff9ab860d5) docs: add tanstack start integration guide - [`14e4533`](https://github.com/better-auth/better-auth/commit/14e4533eb3d9611c7a78757685da2286f1ebefec) docs: add tanstack start to sidebar - [`f6daeb3`](https://github.com/better-auth/better-auth/commit/f6daeb3c1c97574347df94c82b3afe8c9449a389) docs: add tanstack icon - [`99c333f`](https://github.com/better-auth/better-auth/commit/99c333f717dcdc82335805d49456172da75587e6) docs: fix tanstack icon props - [`921ad0a`](https://github.com/better-auth/better-auth/commit/921ad0a7d04a5660b6083d1618ffeb15db8702f6) docs: fix tanstack start icon - [`c7b257c`](https://github.com/better-auth/better-auth/commit/c7b257caacae1e6b319960c52d2dc269b68f809b) feat: add tanstack start example - [`f90ee5e`](https://github.com/better-auth/better-auth/commit/f90ee5e2216fc16f5c39c10128318dcd6bbe433e) feat: add readme to tanstack start example - [`4a065f6`](https://github.com/better-auth/better-auth/commit/4a065f6371484af793cdc9a1b603d940b4eaac7d) example: update tanstack-example - [`3e7aea8`](https://github.com/better-auth/better-auth/commit/3e7aea804592cbd48b34dcdfa64bd429f348c11a) docs: added tanstack-start to installation page - [`58cf3d0`](https://github.com/better-auth/better-auth/commit/58cf3d00da71c0a9d1cb11d67a13aba116e2039b) Merge remote-tracking branch 'origin/main' into patch-1 ### 📊 Changes **43 files changed** (+2884 additions, -196 deletions) <details> <summary>View changed files</summary> 📝 `docs/components/features.tsx` (+24 -23) 📝 `docs/components/icons.tsx` (+36 -0) 📝 `docs/components/sidebar-content.tsx` (+5 -1) 📝 `docs/components/techstack-icons.tsx` (+4 -0) 📝 `docs/content/docs/basic-usage.mdx` (+15 -1) 📝 `docs/content/docs/installation.mdx` (+17 -1) ➕ `docs/content/docs/integrations/tanstack.mdx` (+29 -0) ➕ `examples/tanstack-example/README.md` (+27 -0) ➕ `examples/tanstack-example/app.config.ts` (+12 -0) ➕ `examples/tanstack-example/app/api.ts` (+6 -0) ➕ `examples/tanstack-example/app/client.tsx` (+12 -0) ➕ `examples/tanstack-example/app/components/login-form.tsx` (+78 -0) ➕ `examples/tanstack-example/app/components/register-form.tsx` (+90 -0) ➕ `examples/tanstack-example/app/components/ui/button.tsx` (+58 -0) ➕ `examples/tanstack-example/app/components/ui/card.tsx` (+88 -0) ➕ `examples/tanstack-example/app/components/ui/input.tsx` (+27 -0) ➕ `examples/tanstack-example/app/components/ui/label.tsx` (+26 -0) ➕ `examples/tanstack-example/app/components/ui/navigation-menu.tsx` (+129 -0) ➕ `examples/tanstack-example/app/components/ui/sonner.tsx` (+31 -0) ➕ `examples/tanstack-example/app/lib/client/auth.ts` (+5 -0) _...and 23 more files_ </details> ### 📄 Description This is an integration page for better auth & [TanStack Start](https://tanstack.com/start/latest) --- <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-03-13 10:45:25 -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#3247