gitextract_wqkuwtlm/ ├── .eslintrc.cjs ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── ci.yml │ ├── production.yaml │ └── staging.yaml ├── .gitignore ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.cjs ├── prettier.config.mjs ├── prisma/ │ └── schema.prisma ├── src/ │ ├── app/ │ │ ├── (auth)/ │ │ │ ├── _components/ │ │ │ │ └── DevLoginButtons.tsx │ │ │ ├── layout.tsx │ │ │ └── login/ │ │ │ └── page.tsx │ │ ├── (authenticatedRoutes)/ │ │ │ ├── authenticated/ │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── _components/ │ │ │ └── ServerDataStreaming.tsx │ │ ├── api/ │ │ │ └── trpc/ │ │ │ └── [trpc]/ │ │ │ └── route.ts │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components/ │ │ ├── FormInput/ │ │ │ └── FormInput.tsx │ │ ├── Icons/ │ │ │ ├── Icons.tsx │ │ │ └── index.ts │ │ ├── Loading/ │ │ │ ├── Loading.tsx │ │ │ └── index.ts │ │ ├── PrefetchTRPCQuery/ │ │ │ └── PrefetchTRPCQuery.tsx │ │ ├── PrivateRoute/ │ │ │ ├── PrivateRoute.tsx │ │ │ └── PrivateRouteBase.tsx │ │ ├── PublicRoute/ │ │ │ └── PublicRoute.tsx │ │ ├── TailwindIndicator/ │ │ │ ├── TailwindIndicator.tsx │ │ │ └── index.ts │ │ └── ui/ │ │ ├── button.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── use-toast.ts │ ├── env.mjs │ ├── providers/ │ │ ├── AnalyticsProvider/ │ │ │ └── AnalyticsProvider.tsx │ │ ├── AuthProvider/ │ │ │ ├── AuthProvider.tsx │ │ │ ├── withPrivateRoute.tsx │ │ │ └── withPublicRoute.tsx │ │ └── index.tsx │ ├── server/ │ │ ├── api/ │ │ │ ├── root.ts │ │ │ ├── routers/ │ │ │ │ ├── auth.ts │ │ │ │ └── example.ts │ │ │ └── trpc.ts │ │ ├── db.ts │ │ └── supabase/ │ │ ├── supabaseClient.ts │ │ └── supabaseTypes.ts │ ├── styles/ │ │ └── globals.css │ ├── trpc/ │ │ ├── react.tsx │ │ ├── server.ts │ │ └── shared.ts │ └── utils/ │ ├── auth.ts │ ├── cn.ts │ └── getQueryClient.ts ├── supabase/ │ ├── .gitignore │ ├── config.toml │ ├── functions/ │ │ └── .vscode/ │ │ ├── extensions.json │ │ └── settings.json │ ├── migrations/ │ │ └── 20231004185846_initial_profiles.sql │ └── seed.sql ├── tailwind.config.ts └── tsconfig.json