├── .all-contributorsrc ├── .cron └── schedule-backups.sh ├── .github ├── ISSUE_TEMPLATE │ ├── New Issue.yaml │ └── pull_request_template.md └── workflows │ ├── Message-issue-create.yaml │ ├── Message-pr-merge.yaml │ ├── Message-pr-open.yaml │ ├── assign-issue.yaml │ ├── delete-branch-merge-pr.yaml │ ├── digital-ocean-dev.yaml │ └── digital-ocean-prod.yaml ├── .gitignore ├── .husky └── pre-commit ├── .nginix └── nginx.conf ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTION.md ├── LICENCE.txt ├── Makefile ├── README.md ├── Setting up Database.md ├── Vita.code-workspace ├── api ├── .dockerignore ├── .eslintrc ├── .prettierrc ├── .swcrc ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── Models │ │ ├── Admins.ts │ │ ├── Banner.ts │ │ ├── Booking.ts │ │ ├── CalendarCredentials.ts │ │ ├── Notifications.ts │ │ ├── Topics.ts │ │ ├── User.ts │ │ └── Waitlist.ts │ ├── config │ │ ├── NodeCache.ts │ │ ├── cloudinary.ts │ │ ├── connectDatabase.ts │ │ ├── keys.ts │ │ └── passport-config.ts │ ├── controllers │ │ ├── admin.controller.ts │ │ ├── api.controller.ts │ │ ├── auth.controller.ts │ │ ├── bookings.controller.ts │ │ ├── notification.controller.ts │ │ ├── topics.controller.ts │ │ ├── user.controller.ts │ │ ├── waitlist.controller.ts │ │ └── webhooks.controller.ts │ ├── data │ │ ├── fakeData-controller.ts │ │ ├── fakeData.ts │ │ └── index.ts │ ├── dev.ts │ ├── index.ts │ ├── middleware │ │ ├── checkAdmin.ts │ │ ├── checkDBUrl.ts │ │ ├── express-setup.ts │ │ ├── index.ts │ │ ├── isAuth.ts │ │ ├── jwtAuth.ts │ │ ├── limitSessions.ts │ │ └── rateLimiter.ts │ ├── migrations │ │ ├── country-migration.ts │ │ └── limit-session-migration.ts │ ├── public │ │ └── stylesheets │ │ │ └── adminOtp.css │ ├── routes │ │ ├── admin.routes.ts │ │ ├── api.routes.ts │ │ ├── auth.routes.ts │ │ ├── bookings.routes.ts │ │ ├── dev.routes.ts │ │ ├── index.ts │ │ ├── notification.routes.ts │ │ ├── topics.routes.ts │ │ ├── user.routes.ts │ │ ├── waitlist.routes.ts │ │ └── webhooks.routes.ts │ ├── service │ │ ├── email-service.ts │ │ ├── ics-service.ts │ │ ├── socket-io-service.ts │ │ └── whatsapp-service.ts │ ├── types.d.ts │ └── utils │ │ ├── createCalendarEvent.ts │ │ ├── makeTemplate.ts │ │ ├── parseFormData.ts │ │ ├── sendVerificationMail.ts │ │ ├── sortExperiences.ts │ │ └── topicsData.ts ├── template │ ├── acceptMentor.hbs │ ├── accountDeleted.hbs │ ├── adminOtp.hbs │ ├── bookingRejected.hbs │ ├── emailVerification.hbs │ ├── forgotPassword.hbs │ ├── invite.hbs │ ├── mentorBookingNotify.hbs │ ├── rejectMentor.hbs │ └── topMentor.hbs └── tsconfig.json ├── assets ├── confirm-booking.png ├── landing.png ├── mentors.png ├── scheduler.png ├── topics.png ├── user-page.png └── vita-hld.png ├── client ├── .dockerignore ├── .env.example ├── .eslintrc.js ├── .prettierrc ├── Dockerfile ├── README.md ├── index.html ├── netlify.toml ├── package-lock.json ├── package.json ├── public │ ├── Illustration │ │ ├── Diversity.svg │ │ ├── FreeOfCharge.svg │ │ └── VettedVerified.svg │ ├── TIM │ │ ├── icon.ico │ │ └── logo192.png │ ├── Vita │ │ ├── icon.ico │ │ └── logo192.png │ ├── company │ │ ├── Amazon.svg │ │ ├── Flipkart.svg │ │ ├── Google.svg │ │ ├── Intuit.svg │ │ └── Microsoft.svg │ ├── i1.svg │ ├── i2.svg │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── Appbar │ │ │ ├── Toolbar.tsx │ │ │ └── index.tsx │ │ ├── Auth │ │ │ └── Signup │ │ │ │ ├── Cards │ │ │ │ └── index.tsx │ │ │ │ ├── SignUpSteps │ │ │ │ ├── AvailabilityStep.tsx │ │ │ │ ├── ExperienceStep.tsx │ │ │ │ ├── IntegrationsStep.tsx │ │ │ │ ├── ProfileStep.tsx │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── AuthForm │ │ │ └── index.tsx │ │ ├── Banner │ │ │ └── index.tsx │ │ ├── Carousel │ │ │ ├── Carousel.styles.ts │ │ │ ├── CarouselToolbar.tsx │ │ │ └── index.tsx │ │ ├── CompaniesHero │ │ │ └── index.tsx │ │ ├── Contributors │ │ │ ├── Contributor.tsx │ │ │ ├── contributors.ts │ │ │ └── index.tsx │ │ ├── CountryDropdown │ │ │ └── index.tsx │ │ ├── DaterPicker │ │ │ ├── Calendar.tsx │ │ │ ├── ConfirmationPage.tsx │ │ │ ├── Select_temp.tsx │ │ │ ├── TimeSelector.tsx │ │ │ └── index.tsx │ │ ├── EditableField │ │ │ └── index.tsx │ │ ├── Error404 │ │ │ ├── Error.svg │ │ │ └── Error404bg.tsx │ │ ├── Footer │ │ │ └── Footer.tsx │ │ ├── LandingCards │ │ │ ├── Card.tsx │ │ │ └── index.tsx │ │ ├── LandingHero │ │ │ └── index.tsx │ │ ├── Loader │ │ │ └── index.tsx │ │ ├── MentorValues │ │ │ ├── MentorValues.styles.ts │ │ │ ├── ValueCard.style.ts │ │ │ ├── ValueCard.tsx │ │ │ ├── index.tsx │ │ │ └── mentorValuesData.ts │ │ ├── Menu │ │ │ └── index.tsx │ │ ├── Modals │ │ │ ├── ApplicationSubmitted.tsx │ │ │ ├── BookingRejectModal.tsx │ │ │ └── success.svg │ │ ├── NoBookingCard │ │ │ └── index.tsx │ │ ├── Notification │ │ │ └── index.tsx │ │ ├── PaginatedBookingCard │ │ │ ├── BookingCard.tsx │ │ │ └── index.tsx │ │ ├── PhoneDropDown │ │ │ └── index.tsx │ │ ├── ScrollToTop │ │ │ └── index.tsx │ │ ├── SwipeCards │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ ├── TopicCard │ │ │ └── index.tsx │ │ ├── UserCard │ │ │ └── index.tsx │ │ ├── UserDashboard │ │ │ ├── Drawer.tsx │ │ │ ├── Profile.tsx │ │ │ ├── TimeSlots.tsx │ │ │ └── Toolbar.tsx │ │ ├── UserPage │ │ │ ├── Experiences │ │ │ │ └── index.tsx │ │ │ ├── Stats │ │ │ │ └── index.tsx │ │ │ └── Tips │ │ │ │ └── index.tsx │ │ ├── common │ │ │ ├── ChipSelect.tsx │ │ │ ├── SingleSelect.tsx │ │ │ └── index.tsx │ │ └── deprecated │ │ │ └── Hero │ │ │ ├── Searchbox.tsx │ │ │ └── index.tsx │ ├── config.keys.ts │ ├── data │ │ ├── countryCode.ts │ │ ├── index.ts │ │ ├── palatte.ts │ │ ├── select.ts │ │ ├── swipeCards.ts │ │ └── topics.ts │ ├── hooks │ │ ├── useHttp.ts │ │ ├── useLocalState.ts │ │ ├── useMetaData.ts │ │ └── useTawk-io.tsx │ ├── index.css │ ├── index.tsx │ ├── pages │ │ ├── Auth │ │ │ ├── DevLogin │ │ │ │ └── index.tsx │ │ │ ├── Signup │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Dashboard │ │ │ ├── Booking.tsx │ │ │ ├── BookingSideBar.tsx │ │ │ ├── BookingsList.tsx │ │ │ ├── Settings.tsx │ │ │ └── index.tsx │ │ ├── EmailVerification │ │ │ ├── ValidateToken.tsx │ │ │ ├── VerifyEmail.tsx │ │ │ ├── email_verification.svg │ │ │ └── index.tsx │ │ ├── Error404 │ │ │ └── Error404.tsx │ │ ├── ForgotPassword │ │ │ └── index.tsx │ │ ├── Landing │ │ │ └── index.tsx │ │ ├── SearchPage │ │ │ ├── MentorsPage.tsx │ │ │ ├── TopicsPage.tsx │ │ │ └── index.tsx │ │ ├── UserPage │ │ │ └── index.tsx │ │ ├── Waitlist │ │ │ └── index.tsx │ │ └── routes.tsx │ ├── reportWebVitals.ts │ ├── service │ │ └── ProtectedRoute.tsx │ ├── setupProxy.ts │ ├── setupTests.ts │ ├── store │ │ ├── auth.ts │ │ ├── index.ts │ │ └── local.ts │ ├── test │ │ └── basic.test.tsx │ ├── types.d.ts │ ├── utils │ │ ├── api-helper.ts │ │ ├── helper.ts │ │ ├── hooks │ │ │ ├── theme.ts │ │ │ └── use-page-tracking.ts │ │ └── settings.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── docker-compose.yaml ├── ecosystem.config.js ├── mock-data └── dump │ ├── mentors.bson │ ├── mentors.metadata.json │ ├── sessions.bson │ ├── sessions.metadata.json │ ├── topics.bson │ ├── topics.metadata.json │ ├── users.bson │ └── users.metadata.json └── package.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.cron/schedule-backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.cron/schedule-backups.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/New Issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/ISSUE_TEMPLATE/New Issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/ISSUE_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Message-issue-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/Message-issue-create.yaml -------------------------------------------------------------------------------- /.github/workflows/Message-pr-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/Message-pr-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/Message-pr-open.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/Message-pr-open.yaml -------------------------------------------------------------------------------- /.github/workflows/assign-issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/assign-issue.yaml -------------------------------------------------------------------------------- /.github/workflows/delete-branch-merge-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/delete-branch-merge-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/digital-ocean-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/digital-ocean-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/digital-ocean-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.github/workflows/digital-ocean-prod.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run pre-commit 5 | git add . -------------------------------------------------------------------------------- /.nginix/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.nginix/nginx.conf -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/README.md -------------------------------------------------------------------------------- /Setting up Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/Setting up Database.md -------------------------------------------------------------------------------- /Vita.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/Vita.code-workspace -------------------------------------------------------------------------------- /api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/.dockerignore -------------------------------------------------------------------------------- /api/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/.eslintrc -------------------------------------------------------------------------------- /api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/.prettierrc -------------------------------------------------------------------------------- /api/.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/.swcrc -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- 1 | # API 2 | 3 | -------------------------------------------------------------------------------- /api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/package-lock.json -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/package.json -------------------------------------------------------------------------------- /api/src/Models/Admins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Admins.ts -------------------------------------------------------------------------------- /api/src/Models/Banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Banner.ts -------------------------------------------------------------------------------- /api/src/Models/Booking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Booking.ts -------------------------------------------------------------------------------- /api/src/Models/CalendarCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/CalendarCredentials.ts -------------------------------------------------------------------------------- /api/src/Models/Notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Notifications.ts -------------------------------------------------------------------------------- /api/src/Models/Topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Topics.ts -------------------------------------------------------------------------------- /api/src/Models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/User.ts -------------------------------------------------------------------------------- /api/src/Models/Waitlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/Models/Waitlist.ts -------------------------------------------------------------------------------- /api/src/config/NodeCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/config/NodeCache.ts -------------------------------------------------------------------------------- /api/src/config/cloudinary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/config/cloudinary.ts -------------------------------------------------------------------------------- /api/src/config/connectDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/config/connectDatabase.ts -------------------------------------------------------------------------------- /api/src/config/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/config/keys.ts -------------------------------------------------------------------------------- /api/src/config/passport-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/config/passport-config.ts -------------------------------------------------------------------------------- /api/src/controllers/admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/admin.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/api.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/api.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/auth.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/bookings.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/bookings.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/notification.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/notification.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/topics.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/topics.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/user.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/waitlist.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/waitlist.controller.ts -------------------------------------------------------------------------------- /api/src/controllers/webhooks.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/controllers/webhooks.controller.ts -------------------------------------------------------------------------------- /api/src/data/fakeData-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/data/fakeData-controller.ts -------------------------------------------------------------------------------- /api/src/data/fakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/data/fakeData.ts -------------------------------------------------------------------------------- /api/src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/data/index.ts -------------------------------------------------------------------------------- /api/src/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/dev.ts -------------------------------------------------------------------------------- /api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/index.ts -------------------------------------------------------------------------------- /api/src/middleware/checkAdmin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/checkAdmin.ts -------------------------------------------------------------------------------- /api/src/middleware/checkDBUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/checkDBUrl.ts -------------------------------------------------------------------------------- /api/src/middleware/express-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/express-setup.ts -------------------------------------------------------------------------------- /api/src/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/index.ts -------------------------------------------------------------------------------- /api/src/middleware/isAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/isAuth.ts -------------------------------------------------------------------------------- /api/src/middleware/jwtAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/jwtAuth.ts -------------------------------------------------------------------------------- /api/src/middleware/limitSessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/limitSessions.ts -------------------------------------------------------------------------------- /api/src/middleware/rateLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/middleware/rateLimiter.ts -------------------------------------------------------------------------------- /api/src/migrations/country-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/migrations/country-migration.ts -------------------------------------------------------------------------------- /api/src/migrations/limit-session-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/migrations/limit-session-migration.ts -------------------------------------------------------------------------------- /api/src/public/stylesheets/adminOtp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/public/stylesheets/adminOtp.css -------------------------------------------------------------------------------- /api/src/routes/admin.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/admin.routes.ts -------------------------------------------------------------------------------- /api/src/routes/api.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/api.routes.ts -------------------------------------------------------------------------------- /api/src/routes/auth.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/auth.routes.ts -------------------------------------------------------------------------------- /api/src/routes/bookings.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/bookings.routes.ts -------------------------------------------------------------------------------- /api/src/routes/dev.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/dev.routes.ts -------------------------------------------------------------------------------- /api/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/index.ts -------------------------------------------------------------------------------- /api/src/routes/notification.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/notification.routes.ts -------------------------------------------------------------------------------- /api/src/routes/topics.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/topics.routes.ts -------------------------------------------------------------------------------- /api/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/user.routes.ts -------------------------------------------------------------------------------- /api/src/routes/waitlist.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/waitlist.routes.ts -------------------------------------------------------------------------------- /api/src/routes/webhooks.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/routes/webhooks.routes.ts -------------------------------------------------------------------------------- /api/src/service/email-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/service/email-service.ts -------------------------------------------------------------------------------- /api/src/service/ics-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/service/ics-service.ts -------------------------------------------------------------------------------- /api/src/service/socket-io-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/service/socket-io-service.ts -------------------------------------------------------------------------------- /api/src/service/whatsapp-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/service/whatsapp-service.ts -------------------------------------------------------------------------------- /api/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/types.d.ts -------------------------------------------------------------------------------- /api/src/utils/createCalendarEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/createCalendarEvent.ts -------------------------------------------------------------------------------- /api/src/utils/makeTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/makeTemplate.ts -------------------------------------------------------------------------------- /api/src/utils/parseFormData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/parseFormData.ts -------------------------------------------------------------------------------- /api/src/utils/sendVerificationMail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/sendVerificationMail.ts -------------------------------------------------------------------------------- /api/src/utils/sortExperiences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/sortExperiences.ts -------------------------------------------------------------------------------- /api/src/utils/topicsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/src/utils/topicsData.ts -------------------------------------------------------------------------------- /api/template/acceptMentor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/acceptMentor.hbs -------------------------------------------------------------------------------- /api/template/accountDeleted.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/accountDeleted.hbs -------------------------------------------------------------------------------- /api/template/adminOtp.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/adminOtp.hbs -------------------------------------------------------------------------------- /api/template/bookingRejected.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/bookingRejected.hbs -------------------------------------------------------------------------------- /api/template/emailVerification.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/emailVerification.hbs -------------------------------------------------------------------------------- /api/template/forgotPassword.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/forgotPassword.hbs -------------------------------------------------------------------------------- /api/template/invite.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/invite.hbs -------------------------------------------------------------------------------- /api/template/mentorBookingNotify.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/mentorBookingNotify.hbs -------------------------------------------------------------------------------- /api/template/rejectMentor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/rejectMentor.hbs -------------------------------------------------------------------------------- /api/template/topMentor.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/template/topMentor.hbs -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /assets/confirm-booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/confirm-booking.png -------------------------------------------------------------------------------- /assets/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/landing.png -------------------------------------------------------------------------------- /assets/mentors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/mentors.png -------------------------------------------------------------------------------- /assets/scheduler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/scheduler.png -------------------------------------------------------------------------------- /assets/topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/topics.png -------------------------------------------------------------------------------- /assets/user-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/user-page.png -------------------------------------------------------------------------------- /assets/vita-hld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/assets/vita-hld.png -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/.dockerignore -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/.eslintrc.js -------------------------------------------------------------------------------- /client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/.prettierrc -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | # CLIENT CODE -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/index.html -------------------------------------------------------------------------------- /client/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/netlify.toml -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/Illustration/Diversity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/Illustration/Diversity.svg -------------------------------------------------------------------------------- /client/public/Illustration/FreeOfCharge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/Illustration/FreeOfCharge.svg -------------------------------------------------------------------------------- /client/public/Illustration/VettedVerified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/Illustration/VettedVerified.svg -------------------------------------------------------------------------------- /client/public/TIM/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/TIM/icon.ico -------------------------------------------------------------------------------- /client/public/TIM/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/TIM/logo192.png -------------------------------------------------------------------------------- /client/public/Vita/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/Vita/icon.ico -------------------------------------------------------------------------------- /client/public/Vita/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/Vita/logo192.png -------------------------------------------------------------------------------- /client/public/company/Amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/company/Amazon.svg -------------------------------------------------------------------------------- /client/public/company/Flipkart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/company/Flipkart.svg -------------------------------------------------------------------------------- /client/public/company/Google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/company/Google.svg -------------------------------------------------------------------------------- /client/public/company/Intuit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/company/Intuit.svg -------------------------------------------------------------------------------- /client/public/company/Microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/company/Microsoft.svg -------------------------------------------------------------------------------- /client/public/i1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/i1.svg -------------------------------------------------------------------------------- /client/public/i2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/i2.svg -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/App.tsx -------------------------------------------------------------------------------- /client/src/components/Appbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Appbar/Toolbar.tsx -------------------------------------------------------------------------------- /client/src/components/Appbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Appbar/index.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/Cards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/Cards/index.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/SignUpSteps/AvailabilityStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/SignUpSteps/AvailabilityStep.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/SignUpSteps/ExperienceStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/SignUpSteps/ExperienceStep.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/SignUpSteps/IntegrationsStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/SignUpSteps/IntegrationsStep.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/SignUpSteps/ProfileStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/SignUpSteps/ProfileStep.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/SignUpSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/SignUpSteps/index.tsx -------------------------------------------------------------------------------- /client/src/components/Auth/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Auth/Signup/index.tsx -------------------------------------------------------------------------------- /client/src/components/AuthForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/AuthForm/index.tsx -------------------------------------------------------------------------------- /client/src/components/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Banner/index.tsx -------------------------------------------------------------------------------- /client/src/components/Carousel/Carousel.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Carousel/Carousel.styles.ts -------------------------------------------------------------------------------- /client/src/components/Carousel/CarouselToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Carousel/CarouselToolbar.tsx -------------------------------------------------------------------------------- /client/src/components/Carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Carousel/index.tsx -------------------------------------------------------------------------------- /client/src/components/CompaniesHero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/CompaniesHero/index.tsx -------------------------------------------------------------------------------- /client/src/components/Contributors/Contributor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Contributors/Contributor.tsx -------------------------------------------------------------------------------- /client/src/components/Contributors/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Contributors/contributors.ts -------------------------------------------------------------------------------- /client/src/components/Contributors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Contributors/index.tsx -------------------------------------------------------------------------------- /client/src/components/CountryDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/CountryDropdown/index.tsx -------------------------------------------------------------------------------- /client/src/components/DaterPicker/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/DaterPicker/Calendar.tsx -------------------------------------------------------------------------------- /client/src/components/DaterPicker/ConfirmationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/DaterPicker/ConfirmationPage.tsx -------------------------------------------------------------------------------- /client/src/components/DaterPicker/Select_temp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/DaterPicker/Select_temp.tsx -------------------------------------------------------------------------------- /client/src/components/DaterPicker/TimeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/DaterPicker/TimeSelector.tsx -------------------------------------------------------------------------------- /client/src/components/DaterPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/DaterPicker/index.tsx -------------------------------------------------------------------------------- /client/src/components/EditableField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/EditableField/index.tsx -------------------------------------------------------------------------------- /client/src/components/Error404/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Error404/Error.svg -------------------------------------------------------------------------------- /client/src/components/Error404/Error404bg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Error404/Error404bg.tsx -------------------------------------------------------------------------------- /client/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /client/src/components/LandingCards/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/LandingCards/Card.tsx -------------------------------------------------------------------------------- /client/src/components/LandingCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/LandingCards/index.tsx -------------------------------------------------------------------------------- /client/src/components/LandingHero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/LandingHero/index.tsx -------------------------------------------------------------------------------- /client/src/components/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Loader/index.tsx -------------------------------------------------------------------------------- /client/src/components/MentorValues/MentorValues.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/MentorValues/MentorValues.styles.ts -------------------------------------------------------------------------------- /client/src/components/MentorValues/ValueCard.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/MentorValues/ValueCard.style.ts -------------------------------------------------------------------------------- /client/src/components/MentorValues/ValueCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/MentorValues/ValueCard.tsx -------------------------------------------------------------------------------- /client/src/components/MentorValues/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/MentorValues/index.tsx -------------------------------------------------------------------------------- /client/src/components/MentorValues/mentorValuesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/MentorValues/mentorValuesData.ts -------------------------------------------------------------------------------- /client/src/components/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Menu/index.tsx -------------------------------------------------------------------------------- /client/src/components/Modals/ApplicationSubmitted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Modals/ApplicationSubmitted.tsx -------------------------------------------------------------------------------- /client/src/components/Modals/BookingRejectModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Modals/BookingRejectModal.tsx -------------------------------------------------------------------------------- /client/src/components/Modals/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Modals/success.svg -------------------------------------------------------------------------------- /client/src/components/NoBookingCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/NoBookingCard/index.tsx -------------------------------------------------------------------------------- /client/src/components/Notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/Notification/index.tsx -------------------------------------------------------------------------------- /client/src/components/PaginatedBookingCard/BookingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/PaginatedBookingCard/BookingCard.tsx -------------------------------------------------------------------------------- /client/src/components/PaginatedBookingCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/PaginatedBookingCard/index.tsx -------------------------------------------------------------------------------- /client/src/components/PhoneDropDown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/PhoneDropDown/index.tsx -------------------------------------------------------------------------------- /client/src/components/ScrollToTop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/ScrollToTop/index.tsx -------------------------------------------------------------------------------- /client/src/components/SwipeCards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/SwipeCards/index.tsx -------------------------------------------------------------------------------- /client/src/components/SwipeCards/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/SwipeCards/utils.ts -------------------------------------------------------------------------------- /client/src/components/TopicCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/TopicCard/index.tsx -------------------------------------------------------------------------------- /client/src/components/UserCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserCard/index.tsx -------------------------------------------------------------------------------- /client/src/components/UserDashboard/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserDashboard/Drawer.tsx -------------------------------------------------------------------------------- /client/src/components/UserDashboard/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserDashboard/Profile.tsx -------------------------------------------------------------------------------- /client/src/components/UserDashboard/TimeSlots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserDashboard/TimeSlots.tsx -------------------------------------------------------------------------------- /client/src/components/UserDashboard/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserDashboard/Toolbar.tsx -------------------------------------------------------------------------------- /client/src/components/UserPage/Experiences/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserPage/Experiences/index.tsx -------------------------------------------------------------------------------- /client/src/components/UserPage/Stats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserPage/Stats/index.tsx -------------------------------------------------------------------------------- /client/src/components/UserPage/Tips/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/UserPage/Tips/index.tsx -------------------------------------------------------------------------------- /client/src/components/common/ChipSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/common/ChipSelect.tsx -------------------------------------------------------------------------------- /client/src/components/common/SingleSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/common/SingleSelect.tsx -------------------------------------------------------------------------------- /client/src/components/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/common/index.tsx -------------------------------------------------------------------------------- /client/src/components/deprecated/Hero/Searchbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/deprecated/Hero/Searchbox.tsx -------------------------------------------------------------------------------- /client/src/components/deprecated/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/components/deprecated/Hero/index.tsx -------------------------------------------------------------------------------- /client/src/config.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/config.keys.ts -------------------------------------------------------------------------------- /client/src/data/countryCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/countryCode.ts -------------------------------------------------------------------------------- /client/src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/index.ts -------------------------------------------------------------------------------- /client/src/data/palatte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/palatte.ts -------------------------------------------------------------------------------- /client/src/data/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/select.ts -------------------------------------------------------------------------------- /client/src/data/swipeCards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/swipeCards.ts -------------------------------------------------------------------------------- /client/src/data/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/data/topics.ts -------------------------------------------------------------------------------- /client/src/hooks/useHttp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/hooks/useHttp.ts -------------------------------------------------------------------------------- /client/src/hooks/useLocalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/hooks/useLocalState.ts -------------------------------------------------------------------------------- /client/src/hooks/useMetaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/hooks/useMetaData.ts -------------------------------------------------------------------------------- /client/src/hooks/useTawk-io.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/hooks/useTawk-io.tsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Auth/DevLogin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Auth/DevLogin/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Auth/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Auth/Signup/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Auth/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/Booking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Dashboard/Booking.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/BookingSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Dashboard/BookingSideBar.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/BookingsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Dashboard/BookingsList.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Dashboard/Settings.tsx -------------------------------------------------------------------------------- /client/src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /client/src/pages/EmailVerification/ValidateToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/EmailVerification/ValidateToken.tsx -------------------------------------------------------------------------------- /client/src/pages/EmailVerification/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/EmailVerification/VerifyEmail.tsx -------------------------------------------------------------------------------- /client/src/pages/EmailVerification/email_verification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/EmailVerification/email_verification.svg -------------------------------------------------------------------------------- /client/src/pages/EmailVerification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/EmailVerification/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Error404/Error404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Error404/Error404.tsx -------------------------------------------------------------------------------- /client/src/pages/ForgotPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/ForgotPassword/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Landing/index.tsx -------------------------------------------------------------------------------- /client/src/pages/SearchPage/MentorsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/SearchPage/MentorsPage.tsx -------------------------------------------------------------------------------- /client/src/pages/SearchPage/TopicsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/SearchPage/TopicsPage.tsx -------------------------------------------------------------------------------- /client/src/pages/SearchPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/SearchPage/index.tsx -------------------------------------------------------------------------------- /client/src/pages/UserPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/UserPage/index.tsx -------------------------------------------------------------------------------- /client/src/pages/Waitlist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/Waitlist/index.tsx -------------------------------------------------------------------------------- /client/src/pages/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/pages/routes.tsx -------------------------------------------------------------------------------- /client/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/reportWebVitals.ts -------------------------------------------------------------------------------- /client/src/service/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/service/ProtectedRoute.tsx -------------------------------------------------------------------------------- /client/src/setupProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/setupProxy.ts -------------------------------------------------------------------------------- /client/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/setupTests.ts -------------------------------------------------------------------------------- /client/src/store/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/store/auth.ts -------------------------------------------------------------------------------- /client/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/store/index.ts -------------------------------------------------------------------------------- /client/src/store/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/store/local.ts -------------------------------------------------------------------------------- /client/src/test/basic.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/test/basic.test.tsx -------------------------------------------------------------------------------- /client/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/types.d.ts -------------------------------------------------------------------------------- /client/src/utils/api-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/utils/api-helper.ts -------------------------------------------------------------------------------- /client/src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/utils/helper.ts -------------------------------------------------------------------------------- /client/src/utils/hooks/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/utils/hooks/theme.ts -------------------------------------------------------------------------------- /client/src/utils/hooks/use-page-tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/utils/hooks/use-page-tracking.ts -------------------------------------------------------------------------------- /client/src/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/utils/settings.ts -------------------------------------------------------------------------------- /client/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/src/vite-env.d.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/tsconfig.node.json -------------------------------------------------------------------------------- /client/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/client/vite.config.ts -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /mock-data/dump/mentors.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/mentors.bson -------------------------------------------------------------------------------- /mock-data/dump/mentors.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/mentors.metadata.json -------------------------------------------------------------------------------- /mock-data/dump/sessions.bson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mock-data/dump/sessions.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/sessions.metadata.json -------------------------------------------------------------------------------- /mock-data/dump/topics.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/topics.bson -------------------------------------------------------------------------------- /mock-data/dump/topics.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/topics.metadata.json -------------------------------------------------------------------------------- /mock-data/dump/users.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/users.bson -------------------------------------------------------------------------------- /mock-data/dump/users.metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/mock-data/dump/users.metadata.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vita-App/Vita/HEAD/package.json --------------------------------------------------------------------------------