├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── COMPONENTS.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1.Bug_report.md │ ├── 2.Feature_request.md │ ├── 3.Improve_docs.md │ ├── 4.Create_a_chore.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── app ├── components │ ├── index.ts │ ├── layout │ │ ├── footer.tsx │ │ ├── header-navigation.tsx │ │ ├── index.ts │ │ └── layout.tsx │ ├── shared │ │ ├── broadcast-edit-form.tsx │ │ ├── broadcast-quick-form.tsx │ │ ├── debug.tsx │ │ ├── index.ts │ │ ├── not-found.tsx │ │ ├── pagination.tsx │ │ ├── search-form.tsx │ │ ├── user-auth-signin-form.tsx │ │ ├── user-auth-signup-form.tsx │ │ ├── user-auth-social-button.tsx │ │ ├── user-card.tsx │ │ └── user-tags-form.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── anchor.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── basic.tsx │ │ ├── button-link.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── dialog.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── index.ts │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── textarea.tsx │ │ ├── time.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── configs │ ├── index.ts │ └── route.ts ├── data │ ├── broadcasts.ts │ ├── index.ts │ ├── user-roles.ts │ ├── user-tags.ts │ ├── users-unallowed.ts │ └── users.ts ├── entry.client.tsx ├── entry.server.tsx ├── globals.css ├── helpers │ ├── auth.server.ts │ ├── broadcast.server.ts │ ├── index.ts │ └── user.server.ts ├── hooks │ ├── index.ts │ ├── use-media-query.tsx │ ├── use-parse-text.tsx │ ├── use-redirect-to.tsx │ └── use-root-loader-data.tsx ├── libs │ ├── db.server.ts │ └── index.ts ├── models │ ├── broadcast.server.ts │ ├── index.ts │ ├── user-password.server.ts │ ├── user-profile.server.ts │ ├── user-role.server.ts │ ├── user-tag.server.ts │ └── user.server.ts ├── root.tsx ├── routes │ ├── $username._index.tsx │ ├── $username.broadcasts.$id._index.tsx │ ├── $username.broadcasts.$id.edit._index.tsx │ ├── .gitignore │ ├── _auth.auth.$provider.callback.tsx │ ├── _auth.auth.$provider.tsx │ ├── _auth.auth.tsx │ ├── _auth.deleted.tsx │ ├── _auth.signin.tsx │ ├── _auth.signout.tsx │ ├── _auth.signup.tsx │ ├── _example.pagination.tsx │ ├── _index.tsx │ ├── _page.privacy.tsx │ ├── _page.terms.tsx │ ├── _redirect.login.tsx │ ├── _redirect.logout.tsx │ ├── _redirect.register.tsx │ ├── _user.dashboard.tsx │ ├── _user.welcome.tsx │ ├── api.user-tags.tsx │ ├── api.usernames.tsx │ ├── api.users.tsx │ ├── broadcasts._index.tsx │ ├── broadcasts.tsx │ ├── healthcheck.tsx │ ├── mentees.tsx │ ├── mentors.tsx │ ├── ping.tsx │ ├── profile.tsx │ ├── search.tsx │ ├── settings._index.tsx │ ├── settings.account.tsx │ ├── settings.appearance.tsx │ ├── settings.danger.tsx │ ├── settings.email.tsx │ ├── settings.general.tsx │ ├── settings.notifications.tsx │ ├── settings.password.tsx │ ├── settings.profile.tsx │ ├── settings.tags.tsx │ └── settings.tsx ├── schemas │ ├── broadcast.ts │ ├── index.ts │ └── user.ts ├── services │ ├── auth-strategies │ │ ├── form.strategy.ts │ │ ├── index.ts │ │ └── strategies.ts │ ├── auth.server.ts │ ├── index.ts │ └── session.server.ts └── utils │ ├── avatar.ts │ ├── cache.server.ts │ ├── cn.ts │ ├── datetime.ts │ ├── delay.ts │ ├── http.ts │ ├── index.ts │ ├── json.ts │ ├── log.ts │ ├── meta.ts │ ├── nanoid.ts │ ├── slug.ts │ ├── string.ts │ ├── timer.ts │ └── url.server.ts ├── components.json ├── docker-compose.yml ├── docs ├── database │ └── README.md └── user-stories │ ├── discovery.md │ ├── landing.md │ ├── mentoring.md │ └── template.md ├── e2e ├── home.spec.ts ├── mentors.spec.ts └── pages │ ├── home.page.ts │ └── mentors.page.ts ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma ├── check.ts ├── connect.ts ├── schema.prisma └── seed.ts ├── public ├── android-chrome-192x192.png ├── apple-touch-icon-precomposed.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.png ├── images │ ├── bear-bear.png │ ├── bear-fox.png │ ├── bear-monocle.png │ ├── bear-rounded.png │ ├── bear-smile.png │ ├── bear-sunglasses.png │ ├── bear-tree.png │ ├── bear-wolf.png │ ├── bearmentor.png │ └── bearmentor.svg ├── mstile-150x150.png ├── safari-pinned-tab.svg └── site.webmanifest ├── remix.config.js ├── remix.env.d.ts ├── server.ts ├── tailwind.config.ts ├── taze.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | __* -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/COMPONENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/COMPONENTS.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/ISSUE_TEMPLATE/1.Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/ISSUE_TEMPLATE/2.Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3.Improve_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/ISSUE_TEMPLATE/3.Improve_docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4.Create_a_chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/ISSUE_TEMPLATE/4.Create_a_chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/README.md -------------------------------------------------------------------------------- /app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/index.ts -------------------------------------------------------------------------------- /app/components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/layout/footer.tsx -------------------------------------------------------------------------------- /app/components/layout/header-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/layout/header-navigation.tsx -------------------------------------------------------------------------------- /app/components/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/layout/index.ts -------------------------------------------------------------------------------- /app/components/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/layout/layout.tsx -------------------------------------------------------------------------------- /app/components/shared/broadcast-edit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/broadcast-edit-form.tsx -------------------------------------------------------------------------------- /app/components/shared/broadcast-quick-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/broadcast-quick-form.tsx -------------------------------------------------------------------------------- /app/components/shared/debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/debug.tsx -------------------------------------------------------------------------------- /app/components/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/index.ts -------------------------------------------------------------------------------- /app/components/shared/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/not-found.tsx -------------------------------------------------------------------------------- /app/components/shared/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/pagination.tsx -------------------------------------------------------------------------------- /app/components/shared/search-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/search-form.tsx -------------------------------------------------------------------------------- /app/components/shared/user-auth-signin-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/user-auth-signin-form.tsx -------------------------------------------------------------------------------- /app/components/shared/user-auth-signup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/user-auth-signup-form.tsx -------------------------------------------------------------------------------- /app/components/shared/user-auth-social-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/user-auth-social-button.tsx -------------------------------------------------------------------------------- /app/components/shared/user-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/user-card.tsx -------------------------------------------------------------------------------- /app/components/shared/user-tags-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/shared/user-tags-form.tsx -------------------------------------------------------------------------------- /app/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /app/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/alert.tsx -------------------------------------------------------------------------------- /app/components/ui/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/anchor.tsx -------------------------------------------------------------------------------- /app/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/avatar.tsx -------------------------------------------------------------------------------- /app/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/badge.tsx -------------------------------------------------------------------------------- /app/components/ui/basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/basic.tsx -------------------------------------------------------------------------------- /app/components/ui/button-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/button-link.tsx -------------------------------------------------------------------------------- /app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/button.tsx -------------------------------------------------------------------------------- /app/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/card.tsx -------------------------------------------------------------------------------- /app/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /app/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /app/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/dialog.tsx -------------------------------------------------------------------------------- /app/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/form.tsx -------------------------------------------------------------------------------- /app/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /app/components/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/index.ts -------------------------------------------------------------------------------- /app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/input.tsx -------------------------------------------------------------------------------- /app/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/label.tsx -------------------------------------------------------------------------------- /app/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/progress.tsx -------------------------------------------------------------------------------- /app/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/select.tsx -------------------------------------------------------------------------------- /app/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/textarea.tsx -------------------------------------------------------------------------------- /app/components/ui/time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/time.tsx -------------------------------------------------------------------------------- /app/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/toast.tsx -------------------------------------------------------------------------------- /app/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/toaster.tsx -------------------------------------------------------------------------------- /app/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /app/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/components/ui/use-toast.ts -------------------------------------------------------------------------------- /app/configs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./route" 2 | -------------------------------------------------------------------------------- /app/configs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/configs/route.ts -------------------------------------------------------------------------------- /app/data/broadcasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/broadcasts.ts -------------------------------------------------------------------------------- /app/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/index.ts -------------------------------------------------------------------------------- /app/data/user-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/user-roles.ts -------------------------------------------------------------------------------- /app/data/user-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/user-tags.ts -------------------------------------------------------------------------------- /app/data/users-unallowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/users-unallowed.ts -------------------------------------------------------------------------------- /app/data/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/data/users.ts -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/helpers/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/helpers/auth.server.ts -------------------------------------------------------------------------------- /app/helpers/broadcast.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/helpers/broadcast.server.ts -------------------------------------------------------------------------------- /app/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/helpers/index.ts -------------------------------------------------------------------------------- /app/helpers/user.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/helpers/user.server.ts -------------------------------------------------------------------------------- /app/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/hooks/index.ts -------------------------------------------------------------------------------- /app/hooks/use-media-query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/hooks/use-media-query.tsx -------------------------------------------------------------------------------- /app/hooks/use-parse-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/hooks/use-parse-text.tsx -------------------------------------------------------------------------------- /app/hooks/use-redirect-to.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/hooks/use-redirect-to.tsx -------------------------------------------------------------------------------- /app/hooks/use-root-loader-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/hooks/use-root-loader-data.tsx -------------------------------------------------------------------------------- /app/libs/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/libs/db.server.ts -------------------------------------------------------------------------------- /app/libs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./db.server" 2 | -------------------------------------------------------------------------------- /app/models/broadcast.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/broadcast.server.ts -------------------------------------------------------------------------------- /app/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/index.ts -------------------------------------------------------------------------------- /app/models/user-password.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/user-password.server.ts -------------------------------------------------------------------------------- /app/models/user-profile.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/user-profile.server.ts -------------------------------------------------------------------------------- /app/models/user-role.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/user-role.server.ts -------------------------------------------------------------------------------- /app/models/user-tag.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/user-tag.server.ts -------------------------------------------------------------------------------- /app/models/user.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/models/user.server.ts -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/$username._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/$username._index.tsx -------------------------------------------------------------------------------- /app/routes/$username.broadcasts.$id._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/$username.broadcasts.$id._index.tsx -------------------------------------------------------------------------------- /app/routes/$username.broadcasts.$id.edit._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/$username.broadcasts.$id.edit._index.tsx -------------------------------------------------------------------------------- /app/routes/.gitignore: -------------------------------------------------------------------------------- 1 | index.ts -------------------------------------------------------------------------------- /app/routes/_auth.auth.$provider.callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.auth.$provider.callback.tsx -------------------------------------------------------------------------------- /app/routes/_auth.auth.$provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.auth.$provider.tsx -------------------------------------------------------------------------------- /app/routes/_auth.auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.auth.tsx -------------------------------------------------------------------------------- /app/routes/_auth.deleted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.deleted.tsx -------------------------------------------------------------------------------- /app/routes/_auth.signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.signin.tsx -------------------------------------------------------------------------------- /app/routes/_auth.signout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.signout.tsx -------------------------------------------------------------------------------- /app/routes/_auth.signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_auth.signup.tsx -------------------------------------------------------------------------------- /app/routes/_example.pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_example.pagination.tsx -------------------------------------------------------------------------------- /app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_index.tsx -------------------------------------------------------------------------------- /app/routes/_page.privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_page.privacy.tsx -------------------------------------------------------------------------------- /app/routes/_page.terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_page.terms.tsx -------------------------------------------------------------------------------- /app/routes/_redirect.login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_redirect.login.tsx -------------------------------------------------------------------------------- /app/routes/_redirect.logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_redirect.logout.tsx -------------------------------------------------------------------------------- /app/routes/_redirect.register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_redirect.register.tsx -------------------------------------------------------------------------------- /app/routes/_user.dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_user.dashboard.tsx -------------------------------------------------------------------------------- /app/routes/_user.welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/_user.welcome.tsx -------------------------------------------------------------------------------- /app/routes/api.user-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/api.user-tags.tsx -------------------------------------------------------------------------------- /app/routes/api.usernames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/api.usernames.tsx -------------------------------------------------------------------------------- /app/routes/api.users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/api.users.tsx -------------------------------------------------------------------------------- /app/routes/broadcasts._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/broadcasts._index.tsx -------------------------------------------------------------------------------- /app/routes/broadcasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/broadcasts.tsx -------------------------------------------------------------------------------- /app/routes/healthcheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/healthcheck.tsx -------------------------------------------------------------------------------- /app/routes/mentees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/mentees.tsx -------------------------------------------------------------------------------- /app/routes/mentors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/mentors.tsx -------------------------------------------------------------------------------- /app/routes/ping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/ping.tsx -------------------------------------------------------------------------------- /app/routes/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/profile.tsx -------------------------------------------------------------------------------- /app/routes/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/search.tsx -------------------------------------------------------------------------------- /app/routes/settings._index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings._index.tsx -------------------------------------------------------------------------------- /app/routes/settings.account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.account.tsx -------------------------------------------------------------------------------- /app/routes/settings.appearance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.appearance.tsx -------------------------------------------------------------------------------- /app/routes/settings.danger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.danger.tsx -------------------------------------------------------------------------------- /app/routes/settings.email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.email.tsx -------------------------------------------------------------------------------- /app/routes/settings.general.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.general.tsx -------------------------------------------------------------------------------- /app/routes/settings.notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.notifications.tsx -------------------------------------------------------------------------------- /app/routes/settings.password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.password.tsx -------------------------------------------------------------------------------- /app/routes/settings.profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.profile.tsx -------------------------------------------------------------------------------- /app/routes/settings.tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.tags.tsx -------------------------------------------------------------------------------- /app/routes/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/routes/settings.tsx -------------------------------------------------------------------------------- /app/schemas/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/schemas/broadcast.ts -------------------------------------------------------------------------------- /app/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/schemas/index.ts -------------------------------------------------------------------------------- /app/schemas/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/schemas/user.ts -------------------------------------------------------------------------------- /app/services/auth-strategies/form.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/auth-strategies/form.strategy.ts -------------------------------------------------------------------------------- /app/services/auth-strategies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/auth-strategies/index.ts -------------------------------------------------------------------------------- /app/services/auth-strategies/strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/auth-strategies/strategies.ts -------------------------------------------------------------------------------- /app/services/auth.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/auth.server.ts -------------------------------------------------------------------------------- /app/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/index.ts -------------------------------------------------------------------------------- /app/services/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/services/session.server.ts -------------------------------------------------------------------------------- /app/utils/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/avatar.ts -------------------------------------------------------------------------------- /app/utils/cache.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/cache.server.ts -------------------------------------------------------------------------------- /app/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/cn.ts -------------------------------------------------------------------------------- /app/utils/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/datetime.ts -------------------------------------------------------------------------------- /app/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/delay.ts -------------------------------------------------------------------------------- /app/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/http.ts -------------------------------------------------------------------------------- /app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/index.ts -------------------------------------------------------------------------------- /app/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/json.ts -------------------------------------------------------------------------------- /app/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/log.ts -------------------------------------------------------------------------------- /app/utils/meta.ts: -------------------------------------------------------------------------------- 1 | export function formatTitle(text: string) { 2 | return `${text} — 🐻 Bearmentor` 3 | } 4 | -------------------------------------------------------------------------------- /app/utils/nanoid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/nanoid.ts -------------------------------------------------------------------------------- /app/utils/slug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/slug.ts -------------------------------------------------------------------------------- /app/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/string.ts -------------------------------------------------------------------------------- /app/utils/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/timer.ts -------------------------------------------------------------------------------- /app/utils/url.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/app/utils/url.server.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docs/database/README.md -------------------------------------------------------------------------------- /docs/user-stories/discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docs/user-stories/discovery.md -------------------------------------------------------------------------------- /docs/user-stories/landing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docs/user-stories/landing.md -------------------------------------------------------------------------------- /docs/user-stories/mentoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docs/user-stories/mentoring.md -------------------------------------------------------------------------------- /docs/user-stories/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/docs/user-stories/template.md -------------------------------------------------------------------------------- /e2e/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/e2e/home.spec.ts -------------------------------------------------------------------------------- /e2e/mentors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/e2e/mentors.spec.ts -------------------------------------------------------------------------------- /e2e/pages/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/e2e/pages/home.page.ts -------------------------------------------------------------------------------- /e2e/pages/mentors.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/e2e/pages/mentors.page.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/prisma/check.ts -------------------------------------------------------------------------------- /prisma/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/prisma/connect.ts -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/images/bear-bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-bear.png -------------------------------------------------------------------------------- /public/images/bear-fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-fox.png -------------------------------------------------------------------------------- /public/images/bear-monocle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-monocle.png -------------------------------------------------------------------------------- /public/images/bear-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-rounded.png -------------------------------------------------------------------------------- /public/images/bear-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-smile.png -------------------------------------------------------------------------------- /public/images/bear-sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-sunglasses.png -------------------------------------------------------------------------------- /public/images/bear-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-tree.png -------------------------------------------------------------------------------- /public/images/bear-wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bear-wolf.png -------------------------------------------------------------------------------- /public/images/bearmentor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bearmentor.png -------------------------------------------------------------------------------- /public/images/bearmentor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/images/bearmentor.svg -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/server.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /taze.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/taze.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearmentor/bearmentor-com-legacy/HEAD/tsconfig.json --------------------------------------------------------------------------------