From f655585cc81ab4af5d27cebb1fa9390e93e0a4bf Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 6 Dec 2025 18:55:57 +0900 Subject: feat(client): add protected route handling with login redirect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Unauthenticated users accessing protected pages (like HomePage) are now redirected to the login page. Includes ProtectedRoute component with loading state support. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/client/components/index.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/client/components/index.ts (limited to 'src/client/components/index.ts') diff --git a/src/client/components/index.ts b/src/client/components/index.ts new file mode 100644 index 0000000..9b97620 --- /dev/null +++ b/src/client/components/index.ts @@ -0,0 +1 @@ +export { ProtectedRoute } from "./ProtectedRoute"; -- cgit v1.2.3-70-g09d2