├── .dockerignore ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── .helmignore ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── cacheConfig.mjs ├── docker.env ├── installer ├── README.md ├── docker-compose.yml ├── index.js ├── package-lock.json └── package.json ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── certificates │ ├── preview │ │ ├── golden-luxury.png │ │ ├── golden-standard.png │ │ └── modern-blue.png │ └── templates │ │ ├── golden-luxury.png │ │ ├── golden-standard.png │ │ └── modern-blue.png ├── favicon.ico ├── fonts │ ├── DM_Serif_Display │ │ ├── DMSerifDisplay-Italic.ttf │ │ └── DMSerifDisplay-Regular.ttf │ ├── Kalam-Regular.ttf │ └── KaushanScript-Regular.ttf ├── icon │ ├── github.png │ └── rupee-svgrepo-com.svg ├── img │ ├── about-course │ │ ├── assignment.svg │ │ ├── chapter.svg │ │ ├── grades.svg │ │ ├── home.svg │ │ ├── playcircle.svg │ │ ├── project.svg │ │ └── react-icon.svg │ ├── brand │ │ ├── brand-icon.png │ │ ├── logo-dark.png │ │ ├── logo.png │ │ └── torqbit-icon.png │ ├── comment-icons │ │ ├── aave.svg │ │ ├── attachcircle.svg │ │ ├── directleft.svg │ │ └── send2.svg │ ├── common │ │ └── empty.svg │ ├── courseIcon │ │ ├── cloud.svg │ │ ├── container.svg │ │ ├── doxter-logo.svg │ │ ├── git.svg │ │ ├── graphql.svg │ │ ├── home.svg │ │ ├── html5.png │ │ ├── html5.svg │ │ ├── js.svg │ │ ├── nextjs.svg │ │ ├── nodejs.svg │ │ ├── react.svg │ │ └── search.svg │ ├── courses │ │ ├── course-icon.svg │ │ ├── lock.svg │ │ ├── notification.svg │ │ └── play-btn.svg │ ├── discord.png │ ├── github.svg │ ├── globe.svg │ ├── google.svg │ ├── guides │ │ └── guide-illustration.svg │ ├── landing │ │ ├── auth.png │ │ ├── course.png │ │ ├── email.png │ │ ├── event.png │ │ ├── hero-bg-dark.png │ │ ├── hero-bg.png │ │ ├── laptop.png │ │ ├── online-learning.png │ │ ├── payment.png │ │ ├── site-design.png │ │ └── video-stream.png │ ├── lead.jpeg │ ├── login-right-img.svg │ ├── login-screen.png │ ├── logo-dark.png │ ├── logo-light.svg │ ├── logo.png │ ├── macbook-dark.png │ ├── macbook-light.png │ ├── mentor.svg │ ├── moon.svg │ ├── offline-course │ │ ├── about_trainer.png │ │ ├── aws-ec2.jpeg │ │ ├── backend.png │ │ ├── devops.png │ │ ├── docker-k8s.jpeg │ │ ├── flower.png │ │ ├── frontend.png │ │ ├── git-github.jpeg │ │ ├── hero-graphics.png │ │ ├── html-css.jpeg │ │ ├── javascript.jpeg │ │ ├── myself.png │ │ ├── next-auth.jpeg │ │ ├── nextjs.png │ │ ├── nodejs.png │ │ ├── phone.png │ │ ├── postgres.png │ │ ├── programming-with-js.jpeg │ │ ├── programming-with-js.png │ │ ├── react.jpeg │ │ ├── react.png │ │ └── whatsapp.png │ ├── profile │ │ └── profile.svg │ ├── program │ │ ├── arrow-right.png │ │ ├── bell.png │ │ ├── camera-add.svg │ │ ├── chapter.png │ │ ├── course.png │ │ ├── duration.png │ │ ├── formbit-screenshot.png │ │ ├── logo.png │ │ └── newProgram │ │ │ ├── edit.jpeg │ │ │ └── upload.jpeg │ ├── quiz │ │ └── quiz-illustration.svg │ ├── sun.svg │ └── torqbit-icon-lt.jpg ├── manifest.json ├── pwa │ ├── app-icon-192.png │ ├── app-icon-256.png │ ├── app-icon-384.png │ └── app-icon-512.png ├── readme │ ├── torqbit-dark.png │ └── torqbit-light.png └── screenshot │ ├── course-screen.jpg │ ├── display-markkk.png │ └── torq-admin-add-course-02.png ├── screenshots ├── 02-course-curriculum.png ├── ai-assistant.png ├── screenshot-torq.png └── screenshot-torqbit.png ├── services └── email │ └── transporter.js ├── site.yaml ├── src ├── actions │ ├── analytics.ts │ ├── checkTempDirExist.ts │ ├── extractIcon.ts │ ├── fetchImageBuffer.ts │ ├── getChatHistoryList.ts │ ├── getCurrency.ts │ ├── getCurrentUser.ts │ ├── getTenantInfo.ts │ ├── getTenantOnboardStatus.ts │ ├── getUserByEmail.ts │ ├── getUserById.ts │ ├── pngToIco.ts │ ├── updateActivitiesStats.ts │ └── updateSiteConfigurationForTenant.ts ├── components │ ├── AIConversation │ │ ├── AIAgent.module.scss │ │ ├── AIAgentCard.tsx │ │ ├── AIChatPreview.tsx │ │ ├── AIChatWidget.tsx │ │ ├── AiChat.module.scss │ │ ├── AiChatHistory.tsx │ │ ├── ChatBar.tsx │ │ ├── ChatEmbed │ │ │ └── ChatEmbedWidget.tsx │ │ ├── ConfigureSources │ │ │ ├── ConfigureSources.tsx │ │ │ └── DocumentAndSiteUrl.tsx │ │ ├── Embed.tsx │ │ ├── History │ │ │ ├── ChatHistory.tsx │ │ │ └── ChatHistoryCard.tsx │ │ ├── LoadingChatWindow.tsx │ │ ├── Playground │ │ │ ├── EmbedInstructionsMethod.ts │ │ │ ├── EmbedSteps.tsx │ │ │ ├── Playground.tsx │ │ │ ├── PlaygroundSidebar.tsx │ │ │ └── instructions.ts │ │ └── ScrollButton.tsx │ ├── AddPhone │ │ └── AddPhone.tsx │ ├── Admin │ │ ├── Analytics │ │ │ └── LineChart.tsx │ │ └── Plans │ │ │ └── UsageData.tsx │ ├── AiLoader.tsx │ ├── Analytics │ │ ├── AnalyticCard.tsx │ │ ├── AnalyticSkeleton.tsx │ │ ├── AnalyticView.tsx │ │ ├── Analytics.module.scss │ │ ├── Analytics.tsx │ │ └── PlatformAnalytics.tsx │ ├── Animations │ │ ├── AnimatedBorder.tsx │ │ └── WordRotate.tsx │ ├── Configuration │ │ ├── ConfigForm.tsx │ │ ├── ConfigFormLayout.tsx │ │ ├── Email │ │ │ └── EmailServiceSystem.tsx │ │ ├── FormDisableOverlay.tsx │ │ ├── MCQAccordian.tsx │ │ └── cms.module.scss │ ├── ContextApi │ │ └── AppContext.tsx │ ├── Conversation │ │ └── ConversationCard.tsx │ ├── Dashboard │ │ ├── Admin │ │ │ ├── AdminDashboard.module.scss │ │ │ └── AdminDashboard.tsx │ │ └── PlatformAdminDashboard.tsx │ ├── DeleteContent.tsx │ ├── Editor │ │ └── TipTap │ │ │ ├── EditorMenuBar.tsx │ │ │ ├── ImageUploadDialog.tsx │ │ │ ├── SlashCommand.tsx │ │ │ ├── TipTapEditor.tsx │ │ │ └── lib │ │ │ ├── extensions.ts │ │ │ ├── slashCommand.ts │ │ │ └── slashCommands.tsx │ ├── Email │ │ ├── EmailVerificationPage.tsx │ │ ├── SubscriptionEmail.tsx │ │ ├── SubscriptionExpireNotify.tsx │ │ ├── TestEmailCredentialsEmail.tsx │ │ ├── TrialSubscriptionExpiryReminder.tsx │ │ ├── WelcomeEmail.tsx │ │ └── WelcomeTenantOwner.tsx │ ├── Layouts │ │ ├── AppLayout.tsx │ │ ├── Blank.tsx │ │ ├── MarketingAppLayout.tsx │ │ ├── MarketingLayout.tsx │ │ └── NavigationItems.tsx │ ├── MarkdownToJsx │ │ └── MarkdownToJsx.tsx │ ├── Marketing │ │ ├── LegalAgreement.tsx │ │ └── MarketingSvgIcons.tsx │ ├── NoContentFound.tsx │ ├── NotFound │ │ └── NotFound.tsx │ ├── Offline │ │ └── Offline.tsx │ ├── OnBoarding │ │ ├── BasicInfo │ │ │ ├── BasicInfo.tsx │ │ │ └── SiteConfigure.module.scss │ │ └── TenantOnboard │ │ │ ├── TenantOnboarding.module.scss │ │ │ └── TenantOnboarding.tsx │ ├── PreviewCode │ │ ├── PreviewCode.tsx │ │ ├── PreviewSite.module.scss │ │ └── PreviewSite.tsx │ ├── PurifyContent │ │ └── PurifyContent.tsx │ ├── Sidebar │ │ ├── ResponsiveNavBar.tsx │ │ └── Sidebar.tsx │ ├── SvgIcons.tsx │ ├── ThemeSwitch │ │ └── ThemeSwitch.tsx │ └── UserInfo │ │ ├── UserInfo.module.scss │ │ └── UserInfo.tsx ├── instrumentation.ts ├── lib │ ├── admin │ │ └── email │ │ │ └── email-client.ts │ ├── api-middlewares │ │ ├── errorHandler.ts │ │ ├── with-authentication.ts │ │ ├── with-authorized.ts │ │ ├── with-current-user.ts │ │ ├── with-method.ts │ │ ├── with-storage-handler.ts │ │ ├── with-tenant-authorized.ts │ │ └── with-validation.ts │ ├── auth │ │ └── loginMethods.ts │ ├── dummyData.ts │ ├── emailConfig.ts │ ├── handleMessageRequest.ts │ ├── prisma.ts │ ├── types │ │ ├── email.ts │ │ ├── site.ts │ │ └── user.ts │ ├── upload │ │ └── utils.ts │ └── utils.ts ├── middleware.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _offline.tsx │ ├── ai-assistant │ │ ├── [agentId].tsx │ │ └── index.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth].ts │ │ ├── tenant │ │ │ └── provision.ts │ │ ├── user │ │ │ ├── get-all.ts │ │ │ └── update.ts │ │ └── v1 │ │ │ ├── admin │ │ │ ├── ai │ │ │ │ └── crawl.ts │ │ │ ├── analytics │ │ │ │ ├── get │ │ │ │ │ └── [duration].ts │ │ │ │ ├── monthly-members.ts │ │ │ │ └── overview.ts │ │ │ ├── config │ │ │ │ ├── auth │ │ │ │ │ ├── configure.ts │ │ │ │ │ └── get.ts │ │ │ │ ├── domain │ │ │ │ │ └── configure.ts │ │ │ │ ├── email │ │ │ │ │ ├── get-credentials.ts │ │ │ │ │ └── verify-save.ts │ │ │ │ ├── encryption.ts │ │ │ │ └── service-provider │ │ │ │ │ ├── add.ts │ │ │ │ │ └── get │ │ │ │ │ └── [name].ts │ │ │ ├── platform │ │ │ │ ├── analytics.ts │ │ │ │ └── overview.ts │ │ │ ├── site │ │ │ │ ├── crawl-test.ts │ │ │ │ ├── image │ │ │ │ │ └── get │ │ │ │ │ │ └── [imageName].ts │ │ │ │ └── site-info │ │ │ │ │ ├── get.ts │ │ │ │ │ └── update.ts │ │ │ ├── sources │ │ │ │ ├── add.ts │ │ │ │ ├── crawl.ts │ │ │ │ ├── discard.ts │ │ │ │ └── list.ts │ │ │ └── tenants │ │ │ │ ├── agents │ │ │ │ ├── get │ │ │ │ │ └── [agentId].ts │ │ │ │ ├── list.ts │ │ │ │ └── update.ts │ │ │ │ └── setup.ts │ │ │ ├── ai-chat │ │ │ ├── [sourceId] │ │ │ │ └── delete.ts │ │ │ ├── add-knowledge.ts │ │ │ ├── ask-question.ts │ │ │ └── get-chat-source.ts │ │ │ ├── chat │ │ │ ├── create.ts │ │ │ ├── fetch.ts │ │ │ └── history.ts │ │ │ ├── conversation │ │ │ └── send-mail.ts │ │ │ ├── domain.ts │ │ │ ├── onboarding.ts │ │ │ └── user │ │ │ ├── check.ts │ │ │ ├── signup.ts │ │ │ └── validate-email.ts │ ├── auth │ │ ├── callback.tsx │ │ └── error.tsx │ ├── chat │ │ ├── [conversationId].tsx │ │ ├── embed │ │ │ └── index.tsx │ │ └── recent.tsx │ ├── dashboard.tsx │ ├── email │ │ └── preview.tsx │ ├── examples │ │ ├── ai-loader.module.scss │ │ ├── ai-loader.tsx │ │ └── loader.html │ ├── in-active-user.tsx │ ├── index.tsx │ ├── login.tsx │ ├── login │ │ ├── redirect.tsx │ │ └── sso.tsx │ ├── onboard.tsx │ ├── privacy-policy.tsx │ ├── settings │ │ └── index.tsx │ ├── signup.tsx │ ├── terms-and-conditions.tsx │ └── unauthorized.tsx ├── services │ ├── AnalyticsService.ts │ ├── ConversationService.ts │ ├── KnowledgeService.ts │ ├── MailerService.ts │ ├── antThemeConfig.ts │ ├── appConstant.ts │ ├── auth │ │ └── AuthService.ts │ ├── businessConfig.ts │ ├── client │ │ ├── ai │ │ │ └── ChatService.ts │ │ └── tenant │ │ │ └── SupportClientService.ts │ ├── darkThemeConfig.ts │ ├── email │ │ └── EmailManagementService.ts │ ├── getSiteConfig.ts │ ├── helper.ts │ ├── momentConfig.ts │ ├── request.ts │ ├── secrets │ │ ├── SecretsManager.ts │ │ └── SecretsProvider.ts │ ├── server │ │ ├── admin │ │ │ ├── AdminAnalytics.ts │ │ │ ├── CertificateManager.ts │ │ │ ├── JobManager.ts │ │ │ └── createAdminTenant.ts │ │ ├── ai │ │ │ ├── ContentAI.ts │ │ │ ├── EmbeddingService.ts │ │ │ └── memory.ts │ │ ├── common │ │ │ └── validateDomain.ts │ │ ├── crawlers │ │ │ ├── Docsite.ts │ │ │ └── WebsiteCrawler.ts │ │ └── lib │ │ │ └── browserManager.ts │ ├── siteConstant.ts │ └── tenant │ │ ├── TenantProvisioner.ts │ │ └── provision.ts ├── styles │ ├── AIChat.module.scss │ ├── AdminDashboard.module.scss │ ├── Analytics.module.scss │ ├── Config.module.scss │ ├── ContactModal.module.scss │ ├── Conversation.module.scss │ ├── Dashboard.module.scss │ ├── LandingPage.module.scss │ ├── Layout2.module.scss │ ├── Login.module.scss │ ├── Marketing │ │ ├── Contact │ │ │ └── ContactUs.module.scss │ │ ├── LandingPage │ │ │ └── LandingPage.module.scss │ │ └── LegalAgreement │ │ │ └── LegalAgreement.module.scss │ ├── MessageBubble.module.scss │ ├── OrganizationList.module.scss │ ├── Plan.module.scss │ ├── Profile.module.scss │ ├── Sidebar.module.scss │ ├── TipTapEditor.module.scss │ ├── globalStyles.scss │ └── globals.css ├── templates │ └── standard │ │ ├── StandardTemplate.module.scss │ │ ├── StandardTemplate.tsx │ │ └── components │ │ ├── Avatar │ │ ├── Avatar.module.scss │ │ └── Avatar.tsx │ │ ├── FallBackImage │ │ ├── FallBack.module.scss │ │ └── FallBackImage.tsx │ │ ├── Footer │ │ ├── Footer.module.scss │ │ └── Footer.tsx │ │ ├── Hero │ │ ├── Hero.module.scss │ │ └── Hero.tsx │ │ └── NavBar │ │ ├── NavBar.module.scss │ │ ├── NavBar.tsx │ │ ├── ResponsiveAppNavBar.tsx │ │ └── SideNavBar.tsx └── types │ ├── admin │ ├── agents.ts │ └── plans.ts │ ├── apis.ts │ ├── auth │ ├── api.ts │ └── session.ts │ ├── cms │ └── email.ts │ ├── courses │ └── analytics.ts │ ├── landing │ ├── blog.ts │ ├── faq.ts │ ├── navbar.ts │ └── testimonial.ts │ ├── mail.ts │ ├── plans.ts │ ├── schema.ts │ ├── setup │ └── siteSetup.ts │ ├── template.ts │ ├── tenant │ └── tenant.ts │ └── theme.ts ├── tailwind.config.mjs ├── tsconfig.json ├── types ├── bcryptjs.d.ts ├── cashfree.d.ts ├── next-auth.d.ts ├── nodemailer.d.ts └── react-custom-scrollbars.d.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/.gitignore -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/.helmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/README.md -------------------------------------------------------------------------------- /cacheConfig.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/cacheConfig.mjs -------------------------------------------------------------------------------- /docker.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_NEXTAUTH_URL=http://localhost:8080 2 | -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/installer/README.md -------------------------------------------------------------------------------- /installer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/installer/docker-compose.yml -------------------------------------------------------------------------------- /installer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/installer/index.js -------------------------------------------------------------------------------- /installer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/installer/package-lock.json -------------------------------------------------------------------------------- /installer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/installer/package.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/certificates/preview/golden-luxury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/preview/golden-luxury.png -------------------------------------------------------------------------------- /public/certificates/preview/golden-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/preview/golden-standard.png -------------------------------------------------------------------------------- /public/certificates/preview/modern-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/preview/modern-blue.png -------------------------------------------------------------------------------- /public/certificates/templates/golden-luxury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/templates/golden-luxury.png -------------------------------------------------------------------------------- /public/certificates/templates/golden-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/templates/golden-standard.png -------------------------------------------------------------------------------- /public/certificates/templates/modern-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/certificates/templates/modern-blue.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/DM_Serif_Display/DMSerifDisplay-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/fonts/DM_Serif_Display/DMSerifDisplay-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/DM_Serif_Display/DMSerifDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/fonts/DM_Serif_Display/DMSerifDisplay-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Kalam-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/fonts/Kalam-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/KaushanScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/fonts/KaushanScript-Regular.ttf -------------------------------------------------------------------------------- /public/icon/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/icon/github.png -------------------------------------------------------------------------------- /public/icon/rupee-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/icon/rupee-svgrepo-com.svg -------------------------------------------------------------------------------- /public/img/about-course/assignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/assignment.svg -------------------------------------------------------------------------------- /public/img/about-course/chapter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/chapter.svg -------------------------------------------------------------------------------- /public/img/about-course/grades.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/grades.svg -------------------------------------------------------------------------------- /public/img/about-course/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/home.svg -------------------------------------------------------------------------------- /public/img/about-course/playcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/playcircle.svg -------------------------------------------------------------------------------- /public/img/about-course/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/project.svg -------------------------------------------------------------------------------- /public/img/about-course/react-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/about-course/react-icon.svg -------------------------------------------------------------------------------- /public/img/brand/brand-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/brand/brand-icon.png -------------------------------------------------------------------------------- /public/img/brand/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/brand/logo-dark.png -------------------------------------------------------------------------------- /public/img/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/brand/logo.png -------------------------------------------------------------------------------- /public/img/brand/torqbit-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/brand/torqbit-icon.png -------------------------------------------------------------------------------- /public/img/comment-icons/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/comment-icons/aave.svg -------------------------------------------------------------------------------- /public/img/comment-icons/attachcircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/comment-icons/attachcircle.svg -------------------------------------------------------------------------------- /public/img/comment-icons/directleft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/comment-icons/directleft.svg -------------------------------------------------------------------------------- /public/img/comment-icons/send2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/comment-icons/send2.svg -------------------------------------------------------------------------------- /public/img/common/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/common/empty.svg -------------------------------------------------------------------------------- /public/img/courseIcon/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/cloud.svg -------------------------------------------------------------------------------- /public/img/courseIcon/container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/container.svg -------------------------------------------------------------------------------- /public/img/courseIcon/doxter-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/doxter-logo.svg -------------------------------------------------------------------------------- /public/img/courseIcon/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/git.svg -------------------------------------------------------------------------------- /public/img/courseIcon/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/graphql.svg -------------------------------------------------------------------------------- /public/img/courseIcon/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/home.svg -------------------------------------------------------------------------------- /public/img/courseIcon/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/html5.png -------------------------------------------------------------------------------- /public/img/courseIcon/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/html5.svg -------------------------------------------------------------------------------- /public/img/courseIcon/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/js.svg -------------------------------------------------------------------------------- /public/img/courseIcon/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/nextjs.svg -------------------------------------------------------------------------------- /public/img/courseIcon/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/nodejs.svg -------------------------------------------------------------------------------- /public/img/courseIcon/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/react.svg -------------------------------------------------------------------------------- /public/img/courseIcon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courseIcon/search.svg -------------------------------------------------------------------------------- /public/img/courses/course-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courses/course-icon.svg -------------------------------------------------------------------------------- /public/img/courses/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courses/lock.svg -------------------------------------------------------------------------------- /public/img/courses/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courses/notification.svg -------------------------------------------------------------------------------- /public/img/courses/play-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/courses/play-btn.svg -------------------------------------------------------------------------------- /public/img/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/discord.png -------------------------------------------------------------------------------- /public/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/github.svg -------------------------------------------------------------------------------- /public/img/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/globe.svg -------------------------------------------------------------------------------- /public/img/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/google.svg -------------------------------------------------------------------------------- /public/img/guides/guide-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/guides/guide-illustration.svg -------------------------------------------------------------------------------- /public/img/landing/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/auth.png -------------------------------------------------------------------------------- /public/img/landing/course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/course.png -------------------------------------------------------------------------------- /public/img/landing/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/email.png -------------------------------------------------------------------------------- /public/img/landing/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/event.png -------------------------------------------------------------------------------- /public/img/landing/hero-bg-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/hero-bg-dark.png -------------------------------------------------------------------------------- /public/img/landing/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/hero-bg.png -------------------------------------------------------------------------------- /public/img/landing/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/laptop.png -------------------------------------------------------------------------------- /public/img/landing/online-learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/online-learning.png -------------------------------------------------------------------------------- /public/img/landing/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/payment.png -------------------------------------------------------------------------------- /public/img/landing/site-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/site-design.png -------------------------------------------------------------------------------- /public/img/landing/video-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/landing/video-stream.png -------------------------------------------------------------------------------- /public/img/lead.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/lead.jpeg -------------------------------------------------------------------------------- /public/img/login-right-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/login-right-img.svg -------------------------------------------------------------------------------- /public/img/login-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/login-screen.png -------------------------------------------------------------------------------- /public/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/logo-dark.png -------------------------------------------------------------------------------- /public/img/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/logo-light.svg -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/macbook-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/macbook-dark.png -------------------------------------------------------------------------------- /public/img/macbook-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/macbook-light.png -------------------------------------------------------------------------------- /public/img/mentor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/mentor.svg -------------------------------------------------------------------------------- /public/img/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/moon.svg -------------------------------------------------------------------------------- /public/img/offline-course/about_trainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/about_trainer.png -------------------------------------------------------------------------------- /public/img/offline-course/aws-ec2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/aws-ec2.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/backend.png -------------------------------------------------------------------------------- /public/img/offline-course/devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/devops.png -------------------------------------------------------------------------------- /public/img/offline-course/docker-k8s.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/docker-k8s.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/flower.png -------------------------------------------------------------------------------- /public/img/offline-course/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/frontend.png -------------------------------------------------------------------------------- /public/img/offline-course/git-github.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/git-github.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/hero-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/hero-graphics.png -------------------------------------------------------------------------------- /public/img/offline-course/html-css.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/html-css.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/javascript.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/javascript.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/myself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/myself.png -------------------------------------------------------------------------------- /public/img/offline-course/next-auth.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/next-auth.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/nextjs.png -------------------------------------------------------------------------------- /public/img/offline-course/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/nodejs.png -------------------------------------------------------------------------------- /public/img/offline-course/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/phone.png -------------------------------------------------------------------------------- /public/img/offline-course/postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/postgres.png -------------------------------------------------------------------------------- /public/img/offline-course/programming-with-js.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/programming-with-js.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/programming-with-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/programming-with-js.png -------------------------------------------------------------------------------- /public/img/offline-course/react.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/react.jpeg -------------------------------------------------------------------------------- /public/img/offline-course/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/react.png -------------------------------------------------------------------------------- /public/img/offline-course/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/offline-course/whatsapp.png -------------------------------------------------------------------------------- /public/img/profile/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/profile/profile.svg -------------------------------------------------------------------------------- /public/img/program/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/arrow-right.png -------------------------------------------------------------------------------- /public/img/program/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/bell.png -------------------------------------------------------------------------------- /public/img/program/camera-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/camera-add.svg -------------------------------------------------------------------------------- /public/img/program/chapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/chapter.png -------------------------------------------------------------------------------- /public/img/program/course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/course.png -------------------------------------------------------------------------------- /public/img/program/duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/duration.png -------------------------------------------------------------------------------- /public/img/program/formbit-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/formbit-screenshot.png -------------------------------------------------------------------------------- /public/img/program/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/logo.png -------------------------------------------------------------------------------- /public/img/program/newProgram/edit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/newProgram/edit.jpeg -------------------------------------------------------------------------------- /public/img/program/newProgram/upload.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/program/newProgram/upload.jpeg -------------------------------------------------------------------------------- /public/img/quiz/quiz-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/quiz/quiz-illustration.svg -------------------------------------------------------------------------------- /public/img/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/sun.svg -------------------------------------------------------------------------------- /public/img/torqbit-icon-lt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/img/torqbit-icon-lt.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/pwa/app-icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/pwa/app-icon-192.png -------------------------------------------------------------------------------- /public/pwa/app-icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/pwa/app-icon-256.png -------------------------------------------------------------------------------- /public/pwa/app-icon-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/pwa/app-icon-384.png -------------------------------------------------------------------------------- /public/pwa/app-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/pwa/app-icon-512.png -------------------------------------------------------------------------------- /public/readme/torqbit-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/readme/torqbit-dark.png -------------------------------------------------------------------------------- /public/readme/torqbit-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/readme/torqbit-light.png -------------------------------------------------------------------------------- /public/screenshot/course-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/screenshot/course-screen.jpg -------------------------------------------------------------------------------- /public/screenshot/display-markkk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/screenshot/display-markkk.png -------------------------------------------------------------------------------- /public/screenshot/torq-admin-add-course-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/public/screenshot/torq-admin-add-course-02.png -------------------------------------------------------------------------------- /screenshots/02-course-curriculum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/screenshots/02-course-curriculum.png -------------------------------------------------------------------------------- /screenshots/ai-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/screenshots/ai-assistant.png -------------------------------------------------------------------------------- /screenshots/screenshot-torq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/screenshots/screenshot-torq.png -------------------------------------------------------------------------------- /screenshots/screenshot-torqbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/screenshots/screenshot-torqbit.png -------------------------------------------------------------------------------- /services/email/transporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/services/email/transporter.js -------------------------------------------------------------------------------- /site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/site.yaml -------------------------------------------------------------------------------- /src/actions/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/analytics.ts -------------------------------------------------------------------------------- /src/actions/checkTempDirExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/checkTempDirExist.ts -------------------------------------------------------------------------------- /src/actions/extractIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/extractIcon.ts -------------------------------------------------------------------------------- /src/actions/fetchImageBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/fetchImageBuffer.ts -------------------------------------------------------------------------------- /src/actions/getChatHistoryList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getChatHistoryList.ts -------------------------------------------------------------------------------- /src/actions/getCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getCurrency.ts -------------------------------------------------------------------------------- /src/actions/getCurrentUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getCurrentUser.ts -------------------------------------------------------------------------------- /src/actions/getTenantInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getTenantInfo.ts -------------------------------------------------------------------------------- /src/actions/getTenantOnboardStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getTenantOnboardStatus.ts -------------------------------------------------------------------------------- /src/actions/getUserByEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getUserByEmail.ts -------------------------------------------------------------------------------- /src/actions/getUserById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/getUserById.ts -------------------------------------------------------------------------------- /src/actions/pngToIco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/pngToIco.ts -------------------------------------------------------------------------------- /src/actions/updateActivitiesStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/updateActivitiesStats.ts -------------------------------------------------------------------------------- /src/actions/updateSiteConfigurationForTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/actions/updateSiteConfigurationForTenant.ts -------------------------------------------------------------------------------- /src/components/AIConversation/AIAgent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AIAgent.module.scss -------------------------------------------------------------------------------- /src/components/AIConversation/AIAgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AIAgentCard.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/AIChatPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AIChatPreview.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/AIChatWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AIChatWidget.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/AiChat.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AiChat.module.scss -------------------------------------------------------------------------------- /src/components/AIConversation/AiChatHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/AiChatHistory.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/ChatBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/ChatBar.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/ChatEmbed/ChatEmbedWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/ChatEmbed/ChatEmbedWidget.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/ConfigureSources/ConfigureSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/ConfigureSources/ConfigureSources.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/ConfigureSources/DocumentAndSiteUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/ConfigureSources/DocumentAndSiteUrl.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/Embed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Embed.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/History/ChatHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/History/ChatHistory.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/History/ChatHistoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/History/ChatHistoryCard.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/LoadingChatWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/LoadingChatWindow.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/Playground/EmbedInstructionsMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Playground/EmbedInstructionsMethod.ts -------------------------------------------------------------------------------- /src/components/AIConversation/Playground/EmbedSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Playground/EmbedSteps.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/Playground/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Playground/Playground.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/Playground/PlaygroundSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Playground/PlaygroundSidebar.tsx -------------------------------------------------------------------------------- /src/components/AIConversation/Playground/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/Playground/instructions.ts -------------------------------------------------------------------------------- /src/components/AIConversation/ScrollButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AIConversation/ScrollButton.tsx -------------------------------------------------------------------------------- /src/components/AddPhone/AddPhone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AddPhone/AddPhone.tsx -------------------------------------------------------------------------------- /src/components/Admin/Analytics/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Admin/Analytics/LineChart.tsx -------------------------------------------------------------------------------- /src/components/Admin/Plans/UsageData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Admin/Plans/UsageData.tsx -------------------------------------------------------------------------------- /src/components/AiLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/AiLoader.tsx -------------------------------------------------------------------------------- /src/components/Analytics/AnalyticCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/AnalyticCard.tsx -------------------------------------------------------------------------------- /src/components/Analytics/AnalyticSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/AnalyticSkeleton.tsx -------------------------------------------------------------------------------- /src/components/Analytics/AnalyticView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/AnalyticView.tsx -------------------------------------------------------------------------------- /src/components/Analytics/Analytics.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/Analytics.module.scss -------------------------------------------------------------------------------- /src/components/Analytics/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/Analytics.tsx -------------------------------------------------------------------------------- /src/components/Analytics/PlatformAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Analytics/PlatformAnalytics.tsx -------------------------------------------------------------------------------- /src/components/Animations/AnimatedBorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Animations/AnimatedBorder.tsx -------------------------------------------------------------------------------- /src/components/Animations/WordRotate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Animations/WordRotate.tsx -------------------------------------------------------------------------------- /src/components/Configuration/ConfigForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/ConfigForm.tsx -------------------------------------------------------------------------------- /src/components/Configuration/ConfigFormLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/ConfigFormLayout.tsx -------------------------------------------------------------------------------- /src/components/Configuration/Email/EmailServiceSystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/Email/EmailServiceSystem.tsx -------------------------------------------------------------------------------- /src/components/Configuration/FormDisableOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/FormDisableOverlay.tsx -------------------------------------------------------------------------------- /src/components/Configuration/MCQAccordian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/MCQAccordian.tsx -------------------------------------------------------------------------------- /src/components/Configuration/cms.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Configuration/cms.module.scss -------------------------------------------------------------------------------- /src/components/ContextApi/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/ContextApi/AppContext.tsx -------------------------------------------------------------------------------- /src/components/Conversation/ConversationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Conversation/ConversationCard.tsx -------------------------------------------------------------------------------- /src/components/Dashboard/Admin/AdminDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Dashboard/Admin/AdminDashboard.module.scss -------------------------------------------------------------------------------- /src/components/Dashboard/Admin/AdminDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Dashboard/Admin/AdminDashboard.tsx -------------------------------------------------------------------------------- /src/components/Dashboard/PlatformAdminDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Dashboard/PlatformAdminDashboard.tsx -------------------------------------------------------------------------------- /src/components/DeleteContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/DeleteContent.tsx -------------------------------------------------------------------------------- /src/components/Editor/TipTap/EditorMenuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/EditorMenuBar.tsx -------------------------------------------------------------------------------- /src/components/Editor/TipTap/ImageUploadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/ImageUploadDialog.tsx -------------------------------------------------------------------------------- /src/components/Editor/TipTap/SlashCommand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/SlashCommand.tsx -------------------------------------------------------------------------------- /src/components/Editor/TipTap/TipTapEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/TipTapEditor.tsx -------------------------------------------------------------------------------- /src/components/Editor/TipTap/lib/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/lib/extensions.ts -------------------------------------------------------------------------------- /src/components/Editor/TipTap/lib/slashCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/lib/slashCommand.ts -------------------------------------------------------------------------------- /src/components/Editor/TipTap/lib/slashCommands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Editor/TipTap/lib/slashCommands.tsx -------------------------------------------------------------------------------- /src/components/Email/EmailVerificationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/EmailVerificationPage.tsx -------------------------------------------------------------------------------- /src/components/Email/SubscriptionEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/SubscriptionEmail.tsx -------------------------------------------------------------------------------- /src/components/Email/SubscriptionExpireNotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/SubscriptionExpireNotify.tsx -------------------------------------------------------------------------------- /src/components/Email/TestEmailCredentialsEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/TestEmailCredentialsEmail.tsx -------------------------------------------------------------------------------- /src/components/Email/TrialSubscriptionExpiryReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/TrialSubscriptionExpiryReminder.tsx -------------------------------------------------------------------------------- /src/components/Email/WelcomeEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/WelcomeEmail.tsx -------------------------------------------------------------------------------- /src/components/Email/WelcomeTenantOwner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Email/WelcomeTenantOwner.tsx -------------------------------------------------------------------------------- /src/components/Layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Layouts/AppLayout.tsx -------------------------------------------------------------------------------- /src/components/Layouts/Blank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Layouts/Blank.tsx -------------------------------------------------------------------------------- /src/components/Layouts/MarketingAppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Layouts/MarketingAppLayout.tsx -------------------------------------------------------------------------------- /src/components/Layouts/MarketingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Layouts/MarketingLayout.tsx -------------------------------------------------------------------------------- /src/components/Layouts/NavigationItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Layouts/NavigationItems.tsx -------------------------------------------------------------------------------- /src/components/MarkdownToJsx/MarkdownToJsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/MarkdownToJsx/MarkdownToJsx.tsx -------------------------------------------------------------------------------- /src/components/Marketing/LegalAgreement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Marketing/LegalAgreement.tsx -------------------------------------------------------------------------------- /src/components/Marketing/MarketingSvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Marketing/MarketingSvgIcons.tsx -------------------------------------------------------------------------------- /src/components/NoContentFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/NoContentFound.tsx -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /src/components/Offline/Offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Offline/Offline.tsx -------------------------------------------------------------------------------- /src/components/OnBoarding/BasicInfo/BasicInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/OnBoarding/BasicInfo/BasicInfo.tsx -------------------------------------------------------------------------------- /src/components/OnBoarding/BasicInfo/SiteConfigure.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/OnBoarding/BasicInfo/SiteConfigure.module.scss -------------------------------------------------------------------------------- /src/components/OnBoarding/TenantOnboard/TenantOnboarding.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/OnBoarding/TenantOnboard/TenantOnboarding.module.scss -------------------------------------------------------------------------------- /src/components/OnBoarding/TenantOnboard/TenantOnboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/OnBoarding/TenantOnboard/TenantOnboarding.tsx -------------------------------------------------------------------------------- /src/components/PreviewCode/PreviewCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/PreviewCode/PreviewCode.tsx -------------------------------------------------------------------------------- /src/components/PreviewCode/PreviewSite.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/PreviewCode/PreviewSite.module.scss -------------------------------------------------------------------------------- /src/components/PreviewCode/PreviewSite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/PreviewCode/PreviewSite.tsx -------------------------------------------------------------------------------- /src/components/PurifyContent/PurifyContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/PurifyContent/PurifyContent.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/ResponsiveNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Sidebar/ResponsiveNavBar.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SvgIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/SvgIcons.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/ThemeSwitch/ThemeSwitch.tsx -------------------------------------------------------------------------------- /src/components/UserInfo/UserInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/UserInfo/UserInfo.module.scss -------------------------------------------------------------------------------- /src/components/UserInfo/UserInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/components/UserInfo/UserInfo.tsx -------------------------------------------------------------------------------- /src/instrumentation.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/admin/email/email-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/admin/email/email-client.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/errorHandler.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-authentication.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-authorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-authorized.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-current-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-current-user.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-method.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-storage-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-storage-handler.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-tenant-authorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-tenant-authorized.ts -------------------------------------------------------------------------------- /src/lib/api-middlewares/with-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/api-middlewares/with-validation.ts -------------------------------------------------------------------------------- /src/lib/auth/loginMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/auth/loginMethods.ts -------------------------------------------------------------------------------- /src/lib/dummyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/dummyData.ts -------------------------------------------------------------------------------- /src/lib/emailConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/emailConfig.ts -------------------------------------------------------------------------------- /src/lib/handleMessageRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/handleMessageRequest.ts -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/types/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/types/email.ts -------------------------------------------------------------------------------- /src/lib/types/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/types/site.ts -------------------------------------------------------------------------------- /src/lib/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/types/user.ts -------------------------------------------------------------------------------- /src/lib/upload/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/upload/utils.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_offline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/_offline.tsx -------------------------------------------------------------------------------- /src/pages/ai-assistant/[agentId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/ai-assistant/[agentId].tsx -------------------------------------------------------------------------------- /src/pages/ai-assistant/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/ai-assistant/index.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/api/tenant/provision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/tenant/provision.ts -------------------------------------------------------------------------------- /src/pages/api/user/get-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/user/get-all.ts -------------------------------------------------------------------------------- /src/pages/api/user/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/user/update.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/ai/crawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/ai/crawl.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/analytics/get/[duration].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/analytics/get/[duration].ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/analytics/monthly-members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/analytics/monthly-members.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/analytics/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/analytics/overview.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/auth/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/auth/configure.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/auth/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/auth/get.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/domain/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/domain/configure.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/email/get-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/email/get-credentials.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/email/verify-save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/email/verify-save.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/encryption.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/service-provider/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/service-provider/add.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/config/service-provider/get/[name].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/config/service-provider/get/[name].ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/platform/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/platform/analytics.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/platform/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/platform/overview.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/site/crawl-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/site/crawl-test.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/site/image/get/[imageName].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/site/image/get/[imageName].ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/site/site-info/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/site/site-info/get.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/site/site-info/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/site/site-info/update.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/sources/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/sources/add.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/sources/crawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/sources/crawl.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/sources/discard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/sources/discard.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/sources/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/sources/list.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/tenants/agents/get/[agentId].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/tenants/agents/get/[agentId].ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/tenants/agents/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/tenants/agents/list.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/tenants/agents/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/tenants/agents/update.ts -------------------------------------------------------------------------------- /src/pages/api/v1/admin/tenants/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/admin/tenants/setup.ts -------------------------------------------------------------------------------- /src/pages/api/v1/ai-chat/[sourceId]/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/ai-chat/[sourceId]/delete.ts -------------------------------------------------------------------------------- /src/pages/api/v1/ai-chat/add-knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/ai-chat/add-knowledge.ts -------------------------------------------------------------------------------- /src/pages/api/v1/ai-chat/ask-question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/ai-chat/ask-question.ts -------------------------------------------------------------------------------- /src/pages/api/v1/ai-chat/get-chat-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/ai-chat/get-chat-source.ts -------------------------------------------------------------------------------- /src/pages/api/v1/chat/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/chat/create.ts -------------------------------------------------------------------------------- /src/pages/api/v1/chat/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/chat/fetch.ts -------------------------------------------------------------------------------- /src/pages/api/v1/chat/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/chat/history.ts -------------------------------------------------------------------------------- /src/pages/api/v1/conversation/send-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/conversation/send-mail.ts -------------------------------------------------------------------------------- /src/pages/api/v1/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/domain.ts -------------------------------------------------------------------------------- /src/pages/api/v1/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/onboarding.ts -------------------------------------------------------------------------------- /src/pages/api/v1/user/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/user/check.ts -------------------------------------------------------------------------------- /src/pages/api/v1/user/signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/user/signup.ts -------------------------------------------------------------------------------- /src/pages/api/v1/user/validate-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/api/v1/user/validate-email.ts -------------------------------------------------------------------------------- /src/pages/auth/callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/auth/callback.tsx -------------------------------------------------------------------------------- /src/pages/auth/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/auth/error.tsx -------------------------------------------------------------------------------- /src/pages/chat/[conversationId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/chat/[conversationId].tsx -------------------------------------------------------------------------------- /src/pages/chat/embed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/chat/embed/index.tsx -------------------------------------------------------------------------------- /src/pages/chat/recent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/chat/recent.tsx -------------------------------------------------------------------------------- /src/pages/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/dashboard.tsx -------------------------------------------------------------------------------- /src/pages/email/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/email/preview.tsx -------------------------------------------------------------------------------- /src/pages/examples/ai-loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/examples/ai-loader.module.scss -------------------------------------------------------------------------------- /src/pages/examples/ai-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/examples/ai-loader.tsx -------------------------------------------------------------------------------- /src/pages/examples/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/examples/loader.html -------------------------------------------------------------------------------- /src/pages/in-active-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/in-active-user.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/login.tsx -------------------------------------------------------------------------------- /src/pages/login/redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/login/redirect.tsx -------------------------------------------------------------------------------- /src/pages/login/sso.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/login/sso.tsx -------------------------------------------------------------------------------- /src/pages/onboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/onboard.tsx -------------------------------------------------------------------------------- /src/pages/privacy-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/privacy-policy.tsx -------------------------------------------------------------------------------- /src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/signup.tsx -------------------------------------------------------------------------------- /src/pages/terms-and-conditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/terms-and-conditions.tsx -------------------------------------------------------------------------------- /src/pages/unauthorized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/pages/unauthorized.tsx -------------------------------------------------------------------------------- /src/services/AnalyticsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/AnalyticsService.ts -------------------------------------------------------------------------------- /src/services/ConversationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/ConversationService.ts -------------------------------------------------------------------------------- /src/services/KnowledgeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/KnowledgeService.ts -------------------------------------------------------------------------------- /src/services/MailerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/MailerService.ts -------------------------------------------------------------------------------- /src/services/antThemeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/antThemeConfig.ts -------------------------------------------------------------------------------- /src/services/appConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/appConstant.ts -------------------------------------------------------------------------------- /src/services/auth/AuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/auth/AuthService.ts -------------------------------------------------------------------------------- /src/services/businessConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/businessConfig.ts -------------------------------------------------------------------------------- /src/services/client/ai/ChatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/client/ai/ChatService.ts -------------------------------------------------------------------------------- /src/services/client/tenant/SupportClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/client/tenant/SupportClientService.ts -------------------------------------------------------------------------------- /src/services/darkThemeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/darkThemeConfig.ts -------------------------------------------------------------------------------- /src/services/email/EmailManagementService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/email/EmailManagementService.ts -------------------------------------------------------------------------------- /src/services/getSiteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/getSiteConfig.ts -------------------------------------------------------------------------------- /src/services/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/helper.ts -------------------------------------------------------------------------------- /src/services/momentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/momentConfig.ts -------------------------------------------------------------------------------- /src/services/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/request.ts -------------------------------------------------------------------------------- /src/services/secrets/SecretsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/secrets/SecretsManager.ts -------------------------------------------------------------------------------- /src/services/secrets/SecretsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/secrets/SecretsProvider.ts -------------------------------------------------------------------------------- /src/services/server/admin/AdminAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/admin/AdminAnalytics.ts -------------------------------------------------------------------------------- /src/services/server/admin/CertificateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/admin/CertificateManager.ts -------------------------------------------------------------------------------- /src/services/server/admin/JobManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/admin/JobManager.ts -------------------------------------------------------------------------------- /src/services/server/admin/createAdminTenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/admin/createAdminTenant.ts -------------------------------------------------------------------------------- /src/services/server/ai/ContentAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/ai/ContentAI.ts -------------------------------------------------------------------------------- /src/services/server/ai/EmbeddingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/ai/EmbeddingService.ts -------------------------------------------------------------------------------- /src/services/server/ai/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/ai/memory.ts -------------------------------------------------------------------------------- /src/services/server/common/validateDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/common/validateDomain.ts -------------------------------------------------------------------------------- /src/services/server/crawlers/Docsite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/crawlers/Docsite.ts -------------------------------------------------------------------------------- /src/services/server/crawlers/WebsiteCrawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/crawlers/WebsiteCrawler.ts -------------------------------------------------------------------------------- /src/services/server/lib/browserManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/server/lib/browserManager.ts -------------------------------------------------------------------------------- /src/services/siteConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/siteConstant.ts -------------------------------------------------------------------------------- /src/services/tenant/TenantProvisioner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/tenant/TenantProvisioner.ts -------------------------------------------------------------------------------- /src/services/tenant/provision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/services/tenant/provision.ts -------------------------------------------------------------------------------- /src/styles/AIChat.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/AIChat.module.scss -------------------------------------------------------------------------------- /src/styles/AdminDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/AdminDashboard.module.scss -------------------------------------------------------------------------------- /src/styles/Analytics.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Analytics.module.scss -------------------------------------------------------------------------------- /src/styles/Config.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Config.module.scss -------------------------------------------------------------------------------- /src/styles/ContactModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/ContactModal.module.scss -------------------------------------------------------------------------------- /src/styles/Conversation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Conversation.module.scss -------------------------------------------------------------------------------- /src/styles/Dashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Dashboard.module.scss -------------------------------------------------------------------------------- /src/styles/LandingPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/LandingPage.module.scss -------------------------------------------------------------------------------- /src/styles/Layout2.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Layout2.module.scss -------------------------------------------------------------------------------- /src/styles/Login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Login.module.scss -------------------------------------------------------------------------------- /src/styles/Marketing/Contact/ContactUs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Marketing/Contact/ContactUs.module.scss -------------------------------------------------------------------------------- /src/styles/Marketing/LandingPage/LandingPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Marketing/LandingPage/LandingPage.module.scss -------------------------------------------------------------------------------- /src/styles/Marketing/LegalAgreement/LegalAgreement.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Marketing/LegalAgreement/LegalAgreement.module.scss -------------------------------------------------------------------------------- /src/styles/MessageBubble.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/MessageBubble.module.scss -------------------------------------------------------------------------------- /src/styles/OrganizationList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/OrganizationList.module.scss -------------------------------------------------------------------------------- /src/styles/Plan.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Plan.module.scss -------------------------------------------------------------------------------- /src/styles/Profile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Profile.module.scss -------------------------------------------------------------------------------- /src/styles/Sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/Sidebar.module.scss -------------------------------------------------------------------------------- /src/styles/TipTapEditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/TipTapEditor.module.scss -------------------------------------------------------------------------------- /src/styles/globalStyles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/globalStyles.scss -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/templates/standard/StandardTemplate.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/StandardTemplate.module.scss -------------------------------------------------------------------------------- /src/templates/standard/StandardTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/StandardTemplate.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/Avatar/Avatar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Avatar/Avatar.module.scss -------------------------------------------------------------------------------- /src/templates/standard/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/FallBackImage/FallBack.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/FallBackImage/FallBack.module.scss -------------------------------------------------------------------------------- /src/templates/standard/components/FallBackImage/FallBackImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/FallBackImage/FallBackImage.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/Footer/Footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Footer/Footer.module.scss -------------------------------------------------------------------------------- /src/templates/standard/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/Hero/Hero.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Hero/Hero.module.scss -------------------------------------------------------------------------------- /src/templates/standard/components/Hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/Hero/Hero.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/NavBar/NavBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/NavBar/NavBar.module.scss -------------------------------------------------------------------------------- /src/templates/standard/components/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/NavBar/ResponsiveAppNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/NavBar/ResponsiveAppNavBar.tsx -------------------------------------------------------------------------------- /src/templates/standard/components/NavBar/SideNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/templates/standard/components/NavBar/SideNavBar.tsx -------------------------------------------------------------------------------- /src/types/admin/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/admin/agents.ts -------------------------------------------------------------------------------- /src/types/admin/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/admin/plans.ts -------------------------------------------------------------------------------- /src/types/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/apis.ts -------------------------------------------------------------------------------- /src/types/auth/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/auth/api.ts -------------------------------------------------------------------------------- /src/types/auth/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/auth/session.ts -------------------------------------------------------------------------------- /src/types/cms/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/cms/email.ts -------------------------------------------------------------------------------- /src/types/courses/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/courses/analytics.ts -------------------------------------------------------------------------------- /src/types/landing/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/landing/blog.ts -------------------------------------------------------------------------------- /src/types/landing/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/landing/faq.ts -------------------------------------------------------------------------------- /src/types/landing/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/landing/navbar.ts -------------------------------------------------------------------------------- /src/types/landing/testimonial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/landing/testimonial.ts -------------------------------------------------------------------------------- /src/types/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/mail.ts -------------------------------------------------------------------------------- /src/types/plans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/plans.ts -------------------------------------------------------------------------------- /src/types/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/schema.ts -------------------------------------------------------------------------------- /src/types/setup/siteSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/setup/siteSetup.ts -------------------------------------------------------------------------------- /src/types/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/template.ts -------------------------------------------------------------------------------- /src/types/tenant/tenant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/tenant/tenant.ts -------------------------------------------------------------------------------- /src/types/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/src/types/theme.ts -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/bcryptjs.d.ts: -------------------------------------------------------------------------------- 1 | declare module "bcryptjs"; 2 | -------------------------------------------------------------------------------- /types/cashfree.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/types/cashfree.d.ts -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /types/nodemailer.d.ts: -------------------------------------------------------------------------------- 1 | declare module "aos"; 2 | -------------------------------------------------------------------------------- /types/react-custom-scrollbars.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-custom-scrollbars"; 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torqbit/toq/HEAD/yarn.lock --------------------------------------------------------------------------------