├── .github ├── header.png ├── mobile.gif ├── mobile.png └── proffy.gif ├── .gitmodules ├── LICENSE ├── README.md └── mobile ├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── @types │ └── index.d.ts ├── assets │ └── images │ │ ├── Background.png │ │ ├── Background@2x.png │ │ ├── Background@3x.png │ │ ├── icons │ │ ├── Select.png │ │ ├── Select@2x.png │ │ ├── Select@3x.png │ │ ├── back.png │ │ ├── back@2x.png │ │ ├── back@3x.png │ │ ├── filter.png │ │ ├── filter@2x.png │ │ ├── filter@3x.png │ │ ├── give-classes.png │ │ ├── give-classes@2x.png │ │ ├── give-classes@3x.png │ │ ├── heart-outline.png │ │ ├── heart-outline@2x.png │ │ ├── heart-outline@3x.png │ │ ├── heart.png │ │ ├── heart@2x.png │ │ ├── heart@3x.png │ │ ├── study.png │ │ ├── study@2x.png │ │ ├── study@3x.png │ │ ├── trash.png │ │ ├── unfavorite.png │ │ ├── unfavorite@2x.png │ │ ├── unfavorite@3x.png │ │ ├── whatsapp.png │ │ ├── whatsapp@2x.png │ │ └── whatsapp@3x.png │ │ ├── landing.png │ │ ├── landing@2x.png │ │ ├── landing@3x.png │ │ ├── logo.png │ │ ├── logo@2x.png │ │ └── logo@3x.png ├── components │ ├── PageHeader │ │ ├── index.tsx │ │ └── styles.ts │ └── TeacherItem │ │ ├── index.tsx │ │ └── styles.ts ├── pages │ ├── Favorites │ │ ├── index.tsx │ │ └── styles.ts │ ├── GiveClasses │ │ ├── index.tsx │ │ └── styles.ts │ ├── Landing │ │ ├── index.tsx │ │ └── styles.ts │ └── TeacherList │ │ ├── index.tsx │ │ └── styles.ts ├── routes │ ├── AppStack.tsx │ └── StudyTabs.tsx └── services │ └── api.ts ├── tsconfig.json └── yarn.lock /.github/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/.github/header.png -------------------------------------------------------------------------------- /.github/mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/.github/mobile.gif -------------------------------------------------------------------------------- /.github/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/.github/mobile.png -------------------------------------------------------------------------------- /.github/proffy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/.github/proffy.gif -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/README.md -------------------------------------------------------------------------------- /mobile/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/.expo-shared/assets.json -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/.gitignore -------------------------------------------------------------------------------- /mobile/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/App.tsx -------------------------------------------------------------------------------- /mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/README.md -------------------------------------------------------------------------------- /mobile/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/app.json -------------------------------------------------------------------------------- /mobile/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/assets/favicon.png -------------------------------------------------------------------------------- /mobile/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/assets/icon.png -------------------------------------------------------------------------------- /mobile/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/assets/splash.png -------------------------------------------------------------------------------- /mobile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/babel.config.js -------------------------------------------------------------------------------- /mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/package.json -------------------------------------------------------------------------------- /mobile/src/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /mobile/src/assets/images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/Background.png -------------------------------------------------------------------------------- /mobile/src/assets/images/Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/Background@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/Background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/Background@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/Select.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/Select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/Select@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/Select@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/Select@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/back.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/back@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/back@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/filter.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/filter@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/filter@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/give-classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/give-classes.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/give-classes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/give-classes@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/give-classes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/give-classes@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart-outline.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart-outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart-outline@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart-outline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart-outline@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/heart@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/study.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/study@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/study@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/study@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/study@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/trash.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/unfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/unfavorite.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/unfavorite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/unfavorite@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/unfavorite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/unfavorite@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/whatsapp.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/whatsapp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/whatsapp@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/icons/whatsapp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/icons/whatsapp@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/landing.png -------------------------------------------------------------------------------- /mobile/src/assets/images/landing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/landing@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/landing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/landing@3x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/logo.png -------------------------------------------------------------------------------- /mobile/src/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/logo@2x.png -------------------------------------------------------------------------------- /mobile/src/assets/images/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/assets/images/logo@3x.png -------------------------------------------------------------------------------- /mobile/src/components/PageHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/components/PageHeader/index.tsx -------------------------------------------------------------------------------- /mobile/src/components/PageHeader/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/components/PageHeader/styles.ts -------------------------------------------------------------------------------- /mobile/src/components/TeacherItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/components/TeacherItem/index.tsx -------------------------------------------------------------------------------- /mobile/src/components/TeacherItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/components/TeacherItem/styles.ts -------------------------------------------------------------------------------- /mobile/src/pages/Favorites/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/Favorites/index.tsx -------------------------------------------------------------------------------- /mobile/src/pages/Favorites/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/Favorites/styles.ts -------------------------------------------------------------------------------- /mobile/src/pages/GiveClasses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/GiveClasses/index.tsx -------------------------------------------------------------------------------- /mobile/src/pages/GiveClasses/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/GiveClasses/styles.ts -------------------------------------------------------------------------------- /mobile/src/pages/Landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/Landing/index.tsx -------------------------------------------------------------------------------- /mobile/src/pages/Landing/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/Landing/styles.ts -------------------------------------------------------------------------------- /mobile/src/pages/TeacherList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/TeacherList/index.tsx -------------------------------------------------------------------------------- /mobile/src/pages/TeacherList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/pages/TeacherList/styles.ts -------------------------------------------------------------------------------- /mobile/src/routes/AppStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/routes/AppStack.tsx -------------------------------------------------------------------------------- /mobile/src/routes/StudyTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/routes/StudyTabs.tsx -------------------------------------------------------------------------------- /mobile/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/src/services/api.ts -------------------------------------------------------------------------------- /mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/tsconfig.json -------------------------------------------------------------------------------- /mobile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafacdomin/proffy/HEAD/mobile/yarn.lock --------------------------------------------------------------------------------