No description
Find a file
2026-08-03 15:13:18 +02:00
app feat(auth): integrate NextAuth v5 with credentials provider, protected routes, and custom auth layouts 2026-08-03 15:13:18 +02:00
public feat(layout): setup core layout structure with sidebar, header, navbar, brand, and theme tokens 2026-08-03 11:34:43 +02:00
.gitignore Initial commit 2026-08-01 12:13:57 +02:00
auth.ts feat(auth): integrate NextAuth v5 with credentials provider, protected routes, and custom auth layouts 2026-08-03 15:13:18 +02:00
eslint.config.mjs Initial commit 2026-08-01 12:13:57 +02:00
next.config.ts Initial commit 2026-08-01 12:13:57 +02:00
package-lock.json feat(auth): integrate NextAuth v5 with credentials provider, protected routes, and custom auth layouts 2026-08-03 15:13:18 +02:00
package.json feat(auth): integrate NextAuth v5 with credentials provider, protected routes, and custom auth layouts 2026-08-03 15:13:18 +02:00
postcss.config.mjs Initial commit 2026-08-01 12:13:57 +02:00
README.md feat(auth): integrate NextAuth v5 with credentials provider, protected routes, and custom auth layouts 2026-08-03 15:13:18 +02:00
tsconfig.json Initial commit 2026-08-01 12:13:57 +02:00

Flowstate

A modern, high-performance Kanban & Workflow web application designed to help you lock in and enter the productivity flow.

Next.js React TypeScript Tailwind CSS Auth.js PostgreSQL

🛠️ Tech Stack

📂 Architecture & Structure

The project uses Next.js Route Groups to separate public and protected application areas cleanly:

  • app/(auth)/ — Public authentication routes (Login, Register)
  • app/(app)/ — Protected workspace & dashboard routes (Sidebar, Header, Kanban Board)
  • app/api/ — Backend API endpoints & Auth handlers

🎯 Current Status

In Progress — Core layout structure, responsive navigation, and authentication (Auth.js v5) are fully set up. Next up: Kanban board columns and task management features.