├── .cursor └── rules │ └── general.mdc ├── .gitignore ├── DUMMY.env ├── README.md ├── app.json ├── app ├── (app) │ ├── (authenticated) │ │ ├── (modal) │ │ │ └── create-chat.tsx │ │ ├── (tabs) │ │ │ ├── _layout.tsx │ │ │ ├── chats.tsx │ │ │ ├── index.tsx │ │ │ ├── profile.tsx │ │ │ └── recordings.tsx │ │ ├── _layout.tsx │ │ ├── chat │ │ │ └── [id] │ │ │ │ ├── index.tsx │ │ │ │ ├── manage.tsx │ │ │ │ └── thread.tsx │ │ └── consultation │ │ │ ├── [id].tsx │ │ │ └── schedule.tsx │ └── (public) │ │ ├── _layout.tsx │ │ ├── login.tsx │ │ └── register.tsx └── _layout.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ └── splash-icon.png ├── babel.config.js ├── banner.png ├── bun.lock ├── components ├── AnonymousMessage.tsx ├── CustomCallControls.tsx ├── HapticTab.tsx └── TabBarBackground.ios.tsx ├── global.css ├── install.sh ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── providers ├── AppointmentProvider.tsx ├── AuthProvider.tsx ├── ChatProvider.tsx └── VideoProvider.tsx ├── screenshots ├── 1.gif ├── 1.png ├── 2.gif ├── 2.png ├── 3.gif ├── 3.png ├── 4.gif ├── 4.png ├── 5.gif ├── 5.png ├── 6.gif ├── 6.png ├── 7.gif ├── 7.png ├── 8.png ├── ankurad_stream.png ├── stream1.png ├── stream2.png ├── stream3.png ├── stream4.png ├── stream5.png └── stream6.png ├── tailwind.config.js ├── tsconfig.json └── utils └── atoms.ts /.cursor/rules/general.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/.cursor/rules/general.mdc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /DUMMY.env: -------------------------------------------------------------------------------- 1 | EXPO_PUBLIC_API_URL=http://localhost:3000 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(modal)/create-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(modal)/create-chat.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/chats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(tabs)/chats.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(tabs)/profile.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/(tabs)/recordings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/(tabs)/recordings.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/chat/[id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/chat/[id]/index.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/chat/[id]/manage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/chat/[id]/manage.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/chat/[id]/thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/chat/[id]/thread.tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/consultation/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/consultation/[id].tsx -------------------------------------------------------------------------------- /app/(app)/(authenticated)/consultation/schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(authenticated)/consultation/schedule.tsx -------------------------------------------------------------------------------- /app/(app)/(public)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(public)/_layout.tsx -------------------------------------------------------------------------------- /app/(app)/(public)/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(public)/login.tsx -------------------------------------------------------------------------------- /app/(app)/(public)/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/(app)/(public)/register.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/banner.png -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/bun.lock -------------------------------------------------------------------------------- /components/AnonymousMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/components/AnonymousMessage.tsx -------------------------------------------------------------------------------- /components/CustomCallControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/components/CustomCallControls.tsx -------------------------------------------------------------------------------- /components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/components/HapticTab.tsx -------------------------------------------------------------------------------- /components/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/components/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/global.css -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/install.sh -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/package.json -------------------------------------------------------------------------------- /providers/AppointmentProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/providers/AppointmentProvider.tsx -------------------------------------------------------------------------------- /providers/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/providers/AuthProvider.tsx -------------------------------------------------------------------------------- /providers/ChatProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/providers/ChatProvider.tsx -------------------------------------------------------------------------------- /providers/VideoProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/providers/VideoProvider.tsx -------------------------------------------------------------------------------- /screenshots/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/1.gif -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/2.gif -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/3.gif -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/4.gif -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/5.gif -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/6.gif -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/7.gif -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/ankurad_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/ankurad_stream.png -------------------------------------------------------------------------------- /screenshots/stream1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream1.png -------------------------------------------------------------------------------- /screenshots/stream2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream2.png -------------------------------------------------------------------------------- /screenshots/stream3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream3.png -------------------------------------------------------------------------------- /screenshots/stream4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream4.png -------------------------------------------------------------------------------- /screenshots/stream5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream5.png -------------------------------------------------------------------------------- /screenshots/stream6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/screenshots/stream6.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/mental-health-react-native/HEAD/utils/atoms.ts --------------------------------------------------------------------------------