gitextract_dl_9g3k4/ ├── .gitignore ├── README.md ├── auth-schema.ts ├── biome.json ├── components.json ├── package.json ├── public/ │ ├── manifest.json │ └── robots.txt ├── src/ │ ├── components/ │ │ ├── header.tsx │ │ ├── meta-theme.ts │ │ ├── mode-toggle.tsx │ │ ├── providers.tsx │ │ └── ui/ │ │ ├── button.tsx │ │ └── dropdown-menu.tsx │ ├── database/ │ │ ├── db.ts │ │ └── schema.ts │ ├── lib/ │ │ ├── auth-client.ts │ │ ├── auth.ts │ │ └── utils.ts │ ├── routeTree.gen.ts │ ├── router.tsx │ ├── routes/ │ │ ├── __root.tsx │ │ ├── account/ │ │ │ └── $path.tsx │ │ ├── api/ │ │ │ └── auth/ │ │ │ └── $.ts │ │ ├── auth/ │ │ │ └── $path.tsx │ │ └── index.tsx │ └── styles/ │ ├── custom.css │ └── styles.css ├── tsconfig.json └── vite.config.ts