├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── app ├── @dashboard │ ├── loading.tsx │ ├── page.tsx │ └── settings │ │ └── page.tsx ├── @team │ ├── default.tsx │ ├── loading.tsx │ └── page.tsx ├── default.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── loading.tsx └── page.tsx ├── components └── header.tsx ├── lib └── utils.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.10.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/README.md -------------------------------------------------------------------------------- /app/@dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@dashboard/loading.tsx -------------------------------------------------------------------------------- /app/@dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@dashboard/page.tsx -------------------------------------------------------------------------------- /app/@dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/@team/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@team/default.tsx -------------------------------------------------------------------------------- /app/@team/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@team/loading.tsx -------------------------------------------------------------------------------- /app/@team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/@team/page.tsx -------------------------------------------------------------------------------- /app/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/default.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/components/header.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamedBahram/next-parallel-routes/HEAD/tsconfig.json --------------------------------------------------------------------------------