├── apps
├── mobile
│ ├── .npmrc
│ ├── nativewind-env.d.ts
│ ├── .env.example
│ ├── globals.css
│ ├── assets
│ │ ├── images
│ │ │ ├── icon.png
│ │ │ ├── favicon.png
│ │ │ ├── react-logo.png
│ │ │ ├── splash-icon.png
│ │ │ ├── adaptive-icon.png
│ │ │ ├── react-logo@2x.png
│ │ │ ├── react-logo@3x.png
│ │ │ └── partial-react-logo.png
│ │ └── fonts
│ │ │ └── SpaceMono-Regular.ttf
│ ├── .vscode
│ │ └── settings.json
│ ├── app
│ │ ├── api
│ │ │ └── auth
│ │ │ │ └── [...auth]+api.ts
│ │ ├── _layout.tsx
│ │ ├── sign-in.tsx
│ │ ├── index.tsx
│ │ └── sign-up.tsx
│ ├── gluestack-ui.config.json
│ ├── eslint.config.js
│ ├── metro.config.js
│ ├── babel.config.js
│ ├── lib
│ │ └── auth
│ │ │ └── auth-client.ts
│ ├── tsconfig.json
│ ├── .gitignore
│ ├── components
│ │ └── ui
│ │ │ ├── card
│ │ │ ├── styles.tsx
│ │ │ ├── index.web.tsx
│ │ │ └── index.tsx
│ │ │ ├── gluestack-ui-provider
│ │ │ ├── script.ts
│ │ │ ├── index.tsx
│ │ │ ├── index.web.tsx
│ │ │ └── config.ts
│ │ │ ├── hstack
│ │ │ ├── index.web.tsx
│ │ │ ├── styles.tsx
│ │ │ └── index.tsx
│ │ │ ├── text
│ │ │ ├── index.web.tsx
│ │ │ ├── index.tsx
│ │ │ └── styles.tsx
│ │ │ ├── heading
│ │ │ ├── styles.tsx
│ │ │ ├── index.web.tsx
│ │ │ └── index.tsx
│ │ │ ├── image
│ │ │ └── index.tsx
│ │ │ ├── link
│ │ │ └── index.tsx
│ │ │ └── badge
│ │ │ └── index.tsx
│ ├── app.json
│ ├── package.json
│ ├── tailwind.config.js
│ └── README.md
└── web
│ ├── .env.example
│ ├── postcss.config.mjs
│ ├── lib
│ ├── auth.ts
│ └── auth-client.ts
│ ├── eslint.config.js
│ ├── app
│ ├── dashboard
│ │ └── page.tsx
│ ├── api
│ │ └── auth
│ │ │ └── [...all]
│ │ │ └── route.ts
│ ├── layout.tsx
│ ├── page.tsx
│ └── sign-up
│ │ └── page.tsx
│ ├── next.config.ts
│ ├── public
│ ├── vercel.svg
│ ├── file-text.svg
│ ├── window.svg
│ ├── next.svg
│ ├── globe.svg
│ ├── turborepo-dark.svg
│ └── turborepo-light.svg
│ ├── tsconfig.json
│ ├── .gitignore
│ ├── package.json
│ └── README.md
├── pnpm-workspace.yaml
├── tooling
├── eslint
│ ├── README.md
│ ├── package.json
│ ├── base.js
│ ├── react-internal.js
│ └── next.js
├── tailwind
│ ├── postcss.config.mjs
│ └── package.json
└── typescript
│ ├── react-library.json
│ ├── package.json
│ ├── nextjs.json
│ └── base.json
├── .vscode
└── settings.json
├── packages
├── ui
│ ├── eslint.config.mjs
│ ├── src
│ │ ├── lib
│ │ │ ├── utils.ts
│ │ │ └── globals.css
│ │ └── components
│ │ │ ├── label.tsx
│ │ │ ├── input.tsx
│ │ │ ├── checkbox.tsx
│ │ │ ├── badge.tsx
│ │ │ ├── button.tsx
│ │ │ └── card.tsx
│ ├── tsconfig.json
│ ├── components.json
│ ├── package.json
│ └── README.md
├── auth
│ ├── better-auth-client.ts
│ ├── better-auth.ts
│ └── package.json
└── db
│ ├── package.json
│ └── src
│ └── migration.sql
├── package.json
├── .gitignore
├── turbo.json
├── .github
└── dependabot.yml
├── LICENSE
└── README.md
/apps/mobile/.npmrc:
--------------------------------------------------------------------------------
1 | legacy-peer-deps=true
2 | node-linker=hoisted
3 |
--------------------------------------------------------------------------------
/apps/mobile/nativewind-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
225 | Secured by better-auth. 226 |
227 |