├── .env.local.sample ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── src ├── app │ ├── api │ │ ├── auth │ │ │ └── [...kindeAuth] │ │ │ │ └── route.ts │ │ ├── protected │ │ │ └── route.ts │ │ └── public │ │ │ └── route.ts │ ├── dashboard │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.module.css │ └── page.tsx └── middleware.ts └── tsconfig.json /.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/.env.local.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/app/api/auth/[...kindeAuth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/api/auth/[...kindeAuth]/route.ts -------------------------------------------------------------------------------- /src/app/api/protected/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/api/protected/route.ts -------------------------------------------------------------------------------- /src/app/api/public/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/api/public/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/page.module.css -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kinde-starter-kits/kinde-nextjs-app-router-starter-kit/HEAD/tsconfig.json --------------------------------------------------------------------------------