├── .DS_Store ├── .eslintignore ├── .eslintrc.json ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── suggest-an-improvement.md ├── pull_request_template.md └── workflows │ ├── develop-ci-cd.yml │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode └── settings.json ├── LICENSE.md ├── Marvel Architecture.png ├── README.md ├── architecture.png ├── assets ├── .DS_Store ├── images │ ├── .DS_Store │ └── BookImage.png ├── svg │ ├── .DS_Store │ ├── Briefcase.svg │ ├── CartoonLetter.svg │ ├── ChatBubble.svg │ ├── ChatBubbleV2.svg │ ├── ChatHistoryButtonIcon.svg │ ├── ChatIcon.svg │ ├── ChatIconFill.svg │ ├── CircleCheckFilled.svg │ ├── DefaultPromptStar.svg │ ├── DiscoveryIcon.svg │ ├── EditIcon.svg │ ├── ErrorIndicatorIcon.svg │ ├── GoldCup.svg │ ├── GoogleColor.svg │ ├── GreyLock.svg │ ├── Home.svg │ ├── HomeIcon.svg │ ├── HomeIconOutline.svg │ ├── HomeMenuIcon.svg │ ├── IndicatorIcon.svg │ ├── IndicatorIconBlue2.svg │ ├── KAIAvatar.svg │ ├── LockedIcon.svg │ ├── LogoutIcon.svg │ ├── MarvelAIFrame.svg │ ├── Menu book.svg │ ├── MenuLogo.svg │ ├── Navigation.svg │ ├── Pencil.svg │ ├── PlayIcon.svg │ ├── PurpleStar.svg │ ├── QuestImage.svg │ ├── RadicalXFavicon.svg │ ├── RadicalXMobileLogo.jsx │ ├── Radical_AI.svg │ ├── RulesIcon.svg │ ├── Send.svg │ ├── Star_3.svg │ ├── Star_4.svg │ ├── WindowIcon.svg │ ├── _CheckBoxFilled.svg │ ├── _CheckBoxOutlineBlankOutlined.svg │ ├── _CheckCircleOutlined.svg │ ├── _ErrorOutline.svg │ ├── _IndeterminateCheckBoxFilled.svg │ ├── _InfoOutlined.svg │ ├── _LocationOnFilled.svg │ ├── _WarningAmberOutlined.svg │ ├── add-block.svg │ ├── arrow-back.svg │ ├── diamond.svg │ ├── diamond2.svg │ ├── fireSvg.svg │ ├── hackathon.svg │ ├── hackathonSvg.svg │ ├── joystick.svg │ ├── lock.svg │ ├── planet.svg │ ├── prepaidImage.svg │ ├── publicBetaIcon.svg │ ├── purple-arrow-back.svg │ ├── question_mark.svg │ ├── reload.svg │ ├── robotIcon.svg │ ├── rocket.svg │ ├── rocket2.svg │ ├── user.svg │ ├── userGroup.svg │ ├── verifiedSvg.svg │ └── yellowStar.svg └── urls.js ├── assistants ├── AssistantsPage.jsx ├── index.js └── styles.js ├── code-of-conduct.md ├── components ├── .DS_Store ├── AccordionInputGroupItem │ ├── AccordionInputGroupItem.jsx │ ├── index.js │ └── styles.js ├── AppDisabled │ ├── AppDisabled.jsx │ ├── index.js │ └── styles.js ├── AuthForm │ ├── AuthForm.jsx │ ├── index.js │ └── styles.js ├── AuthTextField │ ├── AuthTextField.jsx │ ├── index.js │ └── styles.js ├── FileTypeSelectorInput │ ├── index.jsx │ └── styles.js ├── GradientOutlinedButton │ ├── GradientOutlinedButton.jsx │ ├── index.js │ └── styles.js ├── Loader │ ├── Loader.jsx │ ├── index.js │ └── styles.js ├── MemoizedMarkdown │ ├── MemoizedMarkdown.jsx │ └── index.js ├── NotficationToggle │ ├── NotificationToggle.jsx │ ├── index.js │ └── styles.js ├── PrimaryDatePickerInput │ ├── PrimaryDatePickerInput.jsx │ ├── index.js │ └── styles.js ├── PrimaryFileUpload │ ├── PrimaryFileUpload.jsx │ ├── index.js │ └── styles.js ├── PrimarySelectorInput │ ├── PrimarySelectorInput.jsx │ ├── index.js │ └── styles.js ├── PrimaryTextAreaInput │ ├── PrimaryTextAreaInput.jsx │ ├── index.js │ └── styles.js ├── PrimaryTextFieldInput │ ├── PrimaryTextFieldInput.jsx │ ├── index.js │ └── styles.js ├── ProfileInputField │ ├── ProfileInputField.jsx │ ├── index.js │ └── styles.js ├── ProfileTextField │ ├── InputWrapper.jsx │ ├── ProfileTextField.jsx │ ├── index.js │ └── styles.js ├── SecondaryLoader │ ├── SecondaryLoader.jsx │ ├── index.js │ └── styles.js ├── SnackBar │ ├── SnackBar.jsx │ └── index.js ├── TabButton │ ├── TabButton.jsx │ ├── index.js │ └── styles.js └── UserAvatar │ ├── index.jsx │ └── styles.js ├── contributing.md ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .DS_Store ├── .eslintrc.js ├── .gitignore ├── .husky │ └── pre-commit ├── .prettierrc.json ├── cloud_db_seed.js ├── constants.js ├── controllers │ ├── marvelAIController.js │ └── userController.js ├── index.js ├── jsdoc.json ├── package-lock.json ├── package.json ├── seed_data.json └── utils │ ├── ArrayUtil.js │ └── objectUtils.js ├── jsconfig.json ├── layouts ├── AuthLayout │ ├── AuthLayout.jsx │ ├── index.js │ └── styles.js ├── MainAppLayout │ ├── MainAppLayout.jsx │ ├── NavBar │ │ ├── Navbar.jsx │ │ ├── index.js │ │ └── styles.js │ ├── NavMenu │ │ ├── NavMenu.jsx │ │ ├── index.js │ │ └── styles.js │ ├── SideMenu │ │ ├── SideMenu.jsx │ │ ├── index.js │ │ └── styles.js │ ├── index.js │ └── styles.js └── OnboardingLayout │ ├── CheckList │ ├── CheckList.jsx │ ├── index.js │ └── styles.js │ ├── OnboardingLayout.jsx │ ├── ProgressBar │ ├── ProgressBar.jsx │ ├── index.js │ └── styles.js │ ├── index.js │ └── styles.js ├── libs ├── constants │ ├── .DS_Store │ ├── auth.js │ ├── bots.js │ ├── colours.js │ ├── disableFilters.js │ ├── notification.js │ ├── onboarding.js │ └── routes.js ├── firebase │ ├── config.js │ └── firebaseSetup.js ├── hooks │ ├── useFilterByTime.jsx │ ├── useRedirect.jsx │ └── useWatchFields.jsx ├── providers │ └── GlobalProvider.jsx ├── redux │ ├── slices │ │ ├── authSlice.js │ │ ├── chatSlice.js │ │ ├── historySlice.js │ │ ├── onboardingSlice.js │ │ └── userSlice.js │ ├── store.js │ └── thunks │ │ ├── fetchChat.js │ │ ├── fetchHistory.js │ │ ├── tools.js │ │ └── user.js ├── regex │ ├── auth.js │ ├── onboarding.js │ └── routes.js ├── services │ ├── .DS_Store │ ├── chatbot │ │ ├── createChatSession.js │ │ └── sendMessage.js │ └── user │ │ ├── manageUser.js │ │ └── signUp.js ├── theme │ └── theme.jsx └── utils │ ├── AuthUtils.js │ ├── FirebaseUtils.jsx │ ├── MiscellaneousUtils.js │ ├── ToolHistoryUtils.js │ └── ToolUtils.js ├── next.config.js ├── package.json ├── pages ├── 404 │ └── index.jsx ├── .DS_Store ├── [toolId] │ └── index.jsx ├── _app.jsx ├── _document.jsx ├── chat │ └── index.jsx ├── history │ └── index.jsx ├── index.jsx ├── onboarding │ └── [onboardingId] │ │ └── index.jsx ├── password-reset │ └── index.jsx ├── redirect │ └── index.jsx ├── signin │ └── index.jsx └── signup │ └── index.jsx ├── public ├── .DS_Store ├── RadicalX-Favicon-128x128.png ├── RadicalX-Favicon-16x16.png ├── RadicalX-Favicon-32x32.png ├── RadicalX-Logo-256x256.png ├── RadicalX-Logo-500x500.png ├── android-chrome-192x192.png ├── android-chrome-384x384.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── .DS_Store │ ├── Ethnocentric │ │ ├── Ethnocentric-Regular-Italics.otf │ │ └── Ethnocentric-Regular.otf │ ├── MoldeSemiExpanded │ │ ├── .DS_Store │ │ ├── Molde-SemiExpanded-Black.ttf │ │ ├── Molde-SemiExpanded-Black.woff │ │ ├── Molde-SemiExpanded-Black.woff2 │ │ ├── Molde-SemiExpanded-Bold.ttf │ │ ├── Molde-SemiExpanded-Bold.woff │ │ ├── Molde-SemiExpanded-Bold.woff2 │ │ ├── Molde-SemiExpanded-Medium.ttf │ │ ├── Molde-SemiExpanded-Medium.woff │ │ ├── Molde-SemiExpanded-Medium.woff2 │ │ ├── Molde-SemiExpanded-Regular.ttf │ │ ├── Molde-SemiExpanded-Regular.woff │ │ └── Molde-SemiExpanded-Regular.woff2 │ └── Satoshi │ │ ├── Satoshi-Black.otf │ │ ├── Satoshi-Bold.otf │ │ ├── Satoshi-Medium.otf │ │ └── Satoshi-Regular.otf ├── index.html ├── mstile-150x150.png ├── safari-pinned-tab.svg └── site.webmanifest ├── sample.env ├── storage.rules ├── styles ├── documentsStyle.js ├── globals.css ├── pageNotFoundStyles.js └── shared │ └── sharedStyles.js ├── templates ├── .DS_Store ├── Chat │ ├── Chat.jsx │ ├── ChatHistory │ │ ├── ChatHistory.jsx │ │ ├── index.js │ │ └── styles.js │ ├── ChatHistoryWindow │ │ ├── ChatHistoryWindow.jsx │ │ ├── index.js │ │ └── styles.js │ ├── ChatSpinner │ │ ├── ChatSpinner.jsx │ │ ├── index.js │ │ └── styles.js │ ├── CodeComponent │ │ ├── CodeComponent.jsx │ │ ├── index.js │ │ └── styles.js │ ├── DefaultPrompt │ │ ├── DefaultPrompt.jsx │ │ ├── index.js │ │ └── styles.js │ ├── ImageMessage │ │ ├── ImageMessage.jsx │ │ ├── index.js │ │ └── styles.js │ ├── Message │ │ ├── Message.jsx │ │ └── index.js │ ├── Options │ │ ├── Options.jsx │ │ ├── index.js │ │ └── styles.js │ ├── QuickActions │ │ ├── QuickActions.jsx │ │ ├── index.js │ │ └── styles.js │ ├── TextMessage │ │ ├── TextMessage.jsx │ │ ├── index.js │ │ └── styles.js │ ├── VideoMessage │ │ ├── VideoMessage.jsx │ │ ├── index.js │ │ └── styles.js │ ├── index.js │ └── styles.js ├── HomePage │ ├── HomePage.jsx │ ├── index.js │ └── styles.js ├── Onboarding │ ├── Complete │ │ ├── Complete.jsx │ │ ├── index.js │ │ └── styles.js │ ├── FinalSteps │ │ ├── FinalSteps.jsx │ │ ├── index.js │ │ └── styles.js │ ├── Onboarding.jsx │ ├── ProfileSetupForm │ │ ├── ProfileSetupForm.jsx │ │ ├── index.js │ │ └── styles.js │ ├── SystemConfigs │ │ ├── SystemsConfig.jsx │ │ ├── index.js │ │ └── styles.js │ ├── Welcome │ │ ├── Welcome.jsx │ │ └── index.js │ ├── index.js │ └── styles.js ├── Reset │ ├── PasswordUpdated │ │ ├── PasswordUpdated.jsx │ │ ├── index.js │ │ └── styles.js │ └── ResetPassword │ │ ├── ResetPassword.jsx │ │ ├── index.js │ │ └── styles.js ├── SignIn │ ├── ForgotPasswordPage │ │ ├── CheckInbox │ │ │ ├── CheckInbox.jsx │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── EnterEmailView │ │ │ ├── EnterEmailView.jsx │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── ForgotPasswordPage.jsx │ │ └── index.js │ └── SignInForm │ │ ├── SignInForm.jsx │ │ ├── index.js │ │ └── styles.js └── SignUp │ ├── SignUpForm │ ├── SignUpForm.jsx │ ├── index.js │ └── styles.js │ └── VerifyEmailPage │ ├── VerifyEmailPage.jsx │ ├── index.js │ └── styles.js └── tools ├── .DS_Store ├── ToolPage.jsx ├── components ├── ToolCard │ ├── Skeleton.jsx │ ├── ToolCard.jsx │ ├── index.js │ └── styles.js ├── ToolHistoryCard │ ├── Skeleton.jsx │ ├── ToolHistoryCard.jsx │ ├── index.js │ └── styles.js ├── ToolHistoryListingContainer │ ├── ToolHistoryListingContainer.jsx │ ├── index.js │ └── styles.js ├── ToolOutputHistoryDrawer │ ├── ToolOutputHistoryDrawer.jsx │ ├── index.js │ ├── styles.js │ └── toolRenderers │ │ ├── FlashCardsOutput.jsx │ │ └── QuizOutput.jsx └── ToolRequestForm │ ├── ToolRequestForm.jsx │ ├── index.js │ └── styles.js ├── data ├── index.js ├── slices │ ├── index.js │ ├── toolHistorySlice.js │ └── toolsSlice.js └── thunks │ ├── index.js │ └── toolHistory.js ├── index.js ├── libs ├── constants │ ├── inputs.js │ └── tools.js ├── hooks │ └── useToolProps.jsx ├── services │ └── submitPrompt.js └── utils │ └── evaluateCondition.js ├── outputs ├── FlashCardList │ ├── FlashCardList.jsx │ ├── index.js │ └── styles.js ├── QuizResponse │ ├── QuizResponse.jsx │ ├── index.js │ └── styles.js ├── SyllabusGeneratorResponse │ ├── SyllabusGeneratorResponse.jsx │ ├── index.js │ └── styles.js ├── WorksheetGeneratorResponse │ ├── WorksheetGeneratorResponse.jsx │ ├── index.js │ └── styles.js └── index.js ├── styles.js └── views ├── ToolFormView ├── ToolFormView.jsx ├── index.js └── styles.js ├── ToolHistoryPage ├── ToolHistoryPage.jsx ├── index.js └── styles.js ├── ToolPageSkeleton ├── ToolPageSkeleton.jsx └── index.js └── ToolsListingContainer ├── ToolsListingContainer.jsx ├── index.js └── styles.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | .next 4 | **/docs/** -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggest-an-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/ISSUE_TEMPLATE/suggest-an-improvement.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/develop-ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/workflows/develop-ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Marvel Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/Marvel Architecture.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/architecture.png -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/images/BookImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/images/BookImage.png -------------------------------------------------------------------------------- /assets/svg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/.DS_Store -------------------------------------------------------------------------------- /assets/svg/Briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Briefcase.svg -------------------------------------------------------------------------------- /assets/svg/CartoonLetter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/CartoonLetter.svg -------------------------------------------------------------------------------- /assets/svg/ChatBubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ChatBubble.svg -------------------------------------------------------------------------------- /assets/svg/ChatBubbleV2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ChatBubbleV2.svg -------------------------------------------------------------------------------- /assets/svg/ChatHistoryButtonIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ChatHistoryButtonIcon.svg -------------------------------------------------------------------------------- /assets/svg/ChatIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ChatIcon.svg -------------------------------------------------------------------------------- /assets/svg/ChatIconFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ChatIconFill.svg -------------------------------------------------------------------------------- /assets/svg/CircleCheckFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/CircleCheckFilled.svg -------------------------------------------------------------------------------- /assets/svg/DefaultPromptStar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/DefaultPromptStar.svg -------------------------------------------------------------------------------- /assets/svg/DiscoveryIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/DiscoveryIcon.svg -------------------------------------------------------------------------------- /assets/svg/EditIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/EditIcon.svg -------------------------------------------------------------------------------- /assets/svg/ErrorIndicatorIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/ErrorIndicatorIcon.svg -------------------------------------------------------------------------------- /assets/svg/GoldCup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/GoldCup.svg -------------------------------------------------------------------------------- /assets/svg/GoogleColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/GoogleColor.svg -------------------------------------------------------------------------------- /assets/svg/GreyLock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/GreyLock.svg -------------------------------------------------------------------------------- /assets/svg/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Home.svg -------------------------------------------------------------------------------- /assets/svg/HomeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/HomeIcon.svg -------------------------------------------------------------------------------- /assets/svg/HomeIconOutline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/HomeIconOutline.svg -------------------------------------------------------------------------------- /assets/svg/HomeMenuIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/HomeMenuIcon.svg -------------------------------------------------------------------------------- /assets/svg/IndicatorIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/IndicatorIcon.svg -------------------------------------------------------------------------------- /assets/svg/IndicatorIconBlue2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/IndicatorIconBlue2.svg -------------------------------------------------------------------------------- /assets/svg/KAIAvatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/KAIAvatar.svg -------------------------------------------------------------------------------- /assets/svg/LockedIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/LockedIcon.svg -------------------------------------------------------------------------------- /assets/svg/LogoutIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/LogoutIcon.svg -------------------------------------------------------------------------------- /assets/svg/MarvelAIFrame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/MarvelAIFrame.svg -------------------------------------------------------------------------------- /assets/svg/Menu book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Menu book.svg -------------------------------------------------------------------------------- /assets/svg/MenuLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/MenuLogo.svg -------------------------------------------------------------------------------- /assets/svg/Navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Navigation.svg -------------------------------------------------------------------------------- /assets/svg/Pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Pencil.svg -------------------------------------------------------------------------------- /assets/svg/PlayIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/PlayIcon.svg -------------------------------------------------------------------------------- /assets/svg/PurpleStar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/PurpleStar.svg -------------------------------------------------------------------------------- /assets/svg/QuestImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/QuestImage.svg -------------------------------------------------------------------------------- /assets/svg/RadicalXFavicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/RadicalXFavicon.svg -------------------------------------------------------------------------------- /assets/svg/RadicalXMobileLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/RadicalXMobileLogo.jsx -------------------------------------------------------------------------------- /assets/svg/Radical_AI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Radical_AI.svg -------------------------------------------------------------------------------- /assets/svg/RulesIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/RulesIcon.svg -------------------------------------------------------------------------------- /assets/svg/Send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Send.svg -------------------------------------------------------------------------------- /assets/svg/Star_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Star_3.svg -------------------------------------------------------------------------------- /assets/svg/Star_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/Star_4.svg -------------------------------------------------------------------------------- /assets/svg/WindowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/WindowIcon.svg -------------------------------------------------------------------------------- /assets/svg/_CheckBoxFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_CheckBoxFilled.svg -------------------------------------------------------------------------------- /assets/svg/_CheckBoxOutlineBlankOutlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_CheckBoxOutlineBlankOutlined.svg -------------------------------------------------------------------------------- /assets/svg/_CheckCircleOutlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_CheckCircleOutlined.svg -------------------------------------------------------------------------------- /assets/svg/_ErrorOutline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_ErrorOutline.svg -------------------------------------------------------------------------------- /assets/svg/_IndeterminateCheckBoxFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_IndeterminateCheckBoxFilled.svg -------------------------------------------------------------------------------- /assets/svg/_InfoOutlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_InfoOutlined.svg -------------------------------------------------------------------------------- /assets/svg/_LocationOnFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_LocationOnFilled.svg -------------------------------------------------------------------------------- /assets/svg/_WarningAmberOutlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/_WarningAmberOutlined.svg -------------------------------------------------------------------------------- /assets/svg/add-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/add-block.svg -------------------------------------------------------------------------------- /assets/svg/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/arrow-back.svg -------------------------------------------------------------------------------- /assets/svg/diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/diamond.svg -------------------------------------------------------------------------------- /assets/svg/diamond2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/diamond2.svg -------------------------------------------------------------------------------- /assets/svg/fireSvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/fireSvg.svg -------------------------------------------------------------------------------- /assets/svg/hackathon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/hackathon.svg -------------------------------------------------------------------------------- /assets/svg/hackathonSvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/hackathonSvg.svg -------------------------------------------------------------------------------- /assets/svg/joystick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/joystick.svg -------------------------------------------------------------------------------- /assets/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/lock.svg -------------------------------------------------------------------------------- /assets/svg/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/planet.svg -------------------------------------------------------------------------------- /assets/svg/prepaidImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/prepaidImage.svg -------------------------------------------------------------------------------- /assets/svg/publicBetaIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/publicBetaIcon.svg -------------------------------------------------------------------------------- /assets/svg/purple-arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/purple-arrow-back.svg -------------------------------------------------------------------------------- /assets/svg/question_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/question_mark.svg -------------------------------------------------------------------------------- /assets/svg/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/reload.svg -------------------------------------------------------------------------------- /assets/svg/robotIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/robotIcon.svg -------------------------------------------------------------------------------- /assets/svg/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/rocket.svg -------------------------------------------------------------------------------- /assets/svg/rocket2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/rocket2.svg -------------------------------------------------------------------------------- /assets/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/user.svg -------------------------------------------------------------------------------- /assets/svg/userGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/userGroup.svg -------------------------------------------------------------------------------- /assets/svg/verifiedSvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/verifiedSvg.svg -------------------------------------------------------------------------------- /assets/svg/yellowStar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/svg/yellowStar.svg -------------------------------------------------------------------------------- /assets/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assets/urls.js -------------------------------------------------------------------------------- /assistants/AssistantsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assistants/AssistantsPage.jsx -------------------------------------------------------------------------------- /assistants/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AssistantsPage'; 2 | -------------------------------------------------------------------------------- /assistants/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/assistants/styles.js -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/.DS_Store -------------------------------------------------------------------------------- /components/AccordionInputGroupItem/AccordionInputGroupItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AccordionInputGroupItem/AccordionInputGroupItem.jsx -------------------------------------------------------------------------------- /components/AccordionInputGroupItem/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AccordionInputGroupItem'; 2 | -------------------------------------------------------------------------------- /components/AccordionInputGroupItem/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AccordionInputGroupItem/styles.js -------------------------------------------------------------------------------- /components/AppDisabled/AppDisabled.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AppDisabled/AppDisabled.jsx -------------------------------------------------------------------------------- /components/AppDisabled/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AppDisabled'; 2 | -------------------------------------------------------------------------------- /components/AppDisabled/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AppDisabled/styles.js -------------------------------------------------------------------------------- /components/AuthForm/AuthForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AuthForm/AuthForm.jsx -------------------------------------------------------------------------------- /components/AuthForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AuthForm'; 2 | -------------------------------------------------------------------------------- /components/AuthForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AuthForm/styles.js -------------------------------------------------------------------------------- /components/AuthTextField/AuthTextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AuthTextField/AuthTextField.jsx -------------------------------------------------------------------------------- /components/AuthTextField/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AuthTextField'; 2 | -------------------------------------------------------------------------------- /components/AuthTextField/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/AuthTextField/styles.js -------------------------------------------------------------------------------- /components/FileTypeSelectorInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/FileTypeSelectorInput/index.jsx -------------------------------------------------------------------------------- /components/FileTypeSelectorInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/FileTypeSelectorInput/styles.js -------------------------------------------------------------------------------- /components/GradientOutlinedButton/GradientOutlinedButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/GradientOutlinedButton/GradientOutlinedButton.jsx -------------------------------------------------------------------------------- /components/GradientOutlinedButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './GradientOutlinedButton'; 2 | -------------------------------------------------------------------------------- /components/GradientOutlinedButton/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/GradientOutlinedButton/styles.js -------------------------------------------------------------------------------- /components/Loader/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/Loader/Loader.jsx -------------------------------------------------------------------------------- /components/Loader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Loader'; 2 | -------------------------------------------------------------------------------- /components/Loader/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/Loader/styles.js -------------------------------------------------------------------------------- /components/MemoizedMarkdown/MemoizedMarkdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/MemoizedMarkdown/MemoizedMarkdown.jsx -------------------------------------------------------------------------------- /components/MemoizedMarkdown/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './MemoizedMarkdown'; 2 | -------------------------------------------------------------------------------- /components/NotficationToggle/NotificationToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/NotficationToggle/NotificationToggle.jsx -------------------------------------------------------------------------------- /components/NotficationToggle/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NotificationToggle'; 2 | -------------------------------------------------------------------------------- /components/NotficationToggle/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/NotficationToggle/styles.js -------------------------------------------------------------------------------- /components/PrimaryDatePickerInput/PrimaryDatePickerInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryDatePickerInput/PrimaryDatePickerInput.jsx -------------------------------------------------------------------------------- /components/PrimaryDatePickerInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PrimaryDatePickerInput'; 2 | -------------------------------------------------------------------------------- /components/PrimaryDatePickerInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryDatePickerInput/styles.js -------------------------------------------------------------------------------- /components/PrimaryFileUpload/PrimaryFileUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryFileUpload/PrimaryFileUpload.jsx -------------------------------------------------------------------------------- /components/PrimaryFileUpload/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PrimaryFileUpload'; 2 | -------------------------------------------------------------------------------- /components/PrimaryFileUpload/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryFileUpload/styles.js -------------------------------------------------------------------------------- /components/PrimarySelectorInput/PrimarySelectorInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimarySelectorInput/PrimarySelectorInput.jsx -------------------------------------------------------------------------------- /components/PrimarySelectorInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PrimarySelectorInput'; 2 | -------------------------------------------------------------------------------- /components/PrimarySelectorInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimarySelectorInput/styles.js -------------------------------------------------------------------------------- /components/PrimaryTextAreaInput/PrimaryTextAreaInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryTextAreaInput/PrimaryTextAreaInput.jsx -------------------------------------------------------------------------------- /components/PrimaryTextAreaInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PrimaryTextAreaInput'; 2 | -------------------------------------------------------------------------------- /components/PrimaryTextAreaInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryTextAreaInput/styles.js -------------------------------------------------------------------------------- /components/PrimaryTextFieldInput/PrimaryTextFieldInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryTextFieldInput/PrimaryTextFieldInput.jsx -------------------------------------------------------------------------------- /components/PrimaryTextFieldInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PrimaryTextFieldInput'; 2 | -------------------------------------------------------------------------------- /components/PrimaryTextFieldInput/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/PrimaryTextFieldInput/styles.js -------------------------------------------------------------------------------- /components/ProfileInputField/ProfileInputField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileInputField/ProfileInputField.jsx -------------------------------------------------------------------------------- /components/ProfileInputField/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProfileInputField'; 2 | -------------------------------------------------------------------------------- /components/ProfileInputField/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileInputField/styles.js -------------------------------------------------------------------------------- /components/ProfileTextField/InputWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileTextField/InputWrapper.jsx -------------------------------------------------------------------------------- /components/ProfileTextField/ProfileTextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileTextField/ProfileTextField.jsx -------------------------------------------------------------------------------- /components/ProfileTextField/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileTextField/index.js -------------------------------------------------------------------------------- /components/ProfileTextField/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/ProfileTextField/styles.js -------------------------------------------------------------------------------- /components/SecondaryLoader/SecondaryLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/SecondaryLoader/SecondaryLoader.jsx -------------------------------------------------------------------------------- /components/SecondaryLoader/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SecondaryLoader'; 2 | -------------------------------------------------------------------------------- /components/SecondaryLoader/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/SecondaryLoader/styles.js -------------------------------------------------------------------------------- /components/SnackBar/SnackBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/SnackBar/SnackBar.jsx -------------------------------------------------------------------------------- /components/SnackBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SnackBar'; 2 | -------------------------------------------------------------------------------- /components/TabButton/TabButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/TabButton/TabButton.jsx -------------------------------------------------------------------------------- /components/TabButton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TabButton'; 2 | -------------------------------------------------------------------------------- /components/TabButton/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/TabButton/styles.js -------------------------------------------------------------------------------- /components/UserAvatar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/UserAvatar/index.jsx -------------------------------------------------------------------------------- /components/UserAvatar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/components/UserAvatar/styles.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/contributing.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/.DS_Store -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/.eslintrc.js -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/.husky/pre-commit -------------------------------------------------------------------------------- /functions/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/.prettierrc.json -------------------------------------------------------------------------------- /functions/cloud_db_seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/cloud_db_seed.js -------------------------------------------------------------------------------- /functions/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/constants.js -------------------------------------------------------------------------------- /functions/controllers/marvelAIController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/controllers/marvelAIController.js -------------------------------------------------------------------------------- /functions/controllers/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/controllers/userController.js -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/jsdoc.json -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/seed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/seed_data.json -------------------------------------------------------------------------------- /functions/utils/ArrayUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/utils/ArrayUtil.js -------------------------------------------------------------------------------- /functions/utils/objectUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/functions/utils/objectUtils.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/AuthLayout/AuthLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/AuthLayout/AuthLayout.jsx -------------------------------------------------------------------------------- /layouts/AuthLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AuthLayout'; 2 | -------------------------------------------------------------------------------- /layouts/AuthLayout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/AuthLayout/styles.js -------------------------------------------------------------------------------- /layouts/MainAppLayout/ MainAppLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/ MainAppLayout.jsx -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavBar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/NavBar/Navbar.jsx -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Navbar'; 2 | -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavBar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/NavBar/styles.js -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavMenu/NavMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/NavMenu/NavMenu.jsx -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavMenu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NavMenu'; 2 | -------------------------------------------------------------------------------- /layouts/MainAppLayout/NavMenu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/NavMenu/styles.js -------------------------------------------------------------------------------- /layouts/MainAppLayout/SideMenu/SideMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/SideMenu/SideMenu.jsx -------------------------------------------------------------------------------- /layouts/MainAppLayout/SideMenu/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SideMenu'; 2 | -------------------------------------------------------------------------------- /layouts/MainAppLayout/SideMenu/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/SideMenu/styles.js -------------------------------------------------------------------------------- /layouts/MainAppLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ MainAppLayout'; 2 | -------------------------------------------------------------------------------- /layouts/MainAppLayout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/MainAppLayout/styles.js -------------------------------------------------------------------------------- /layouts/OnboardingLayout/CheckList/CheckList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/CheckList/CheckList.jsx -------------------------------------------------------------------------------- /layouts/OnboardingLayout/CheckList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CheckList'; 2 | -------------------------------------------------------------------------------- /layouts/OnboardingLayout/CheckList/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/CheckList/styles.js -------------------------------------------------------------------------------- /layouts/OnboardingLayout/OnboardingLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/OnboardingLayout.jsx -------------------------------------------------------------------------------- /layouts/OnboardingLayout/ProgressBar/ProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/ProgressBar/ProgressBar.jsx -------------------------------------------------------------------------------- /layouts/OnboardingLayout/ProgressBar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProgressBar'; 2 | -------------------------------------------------------------------------------- /layouts/OnboardingLayout/ProgressBar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/ProgressBar/styles.js -------------------------------------------------------------------------------- /layouts/OnboardingLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './OnboardingLayout'; 2 | -------------------------------------------------------------------------------- /layouts/OnboardingLayout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/layouts/OnboardingLayout/styles.js -------------------------------------------------------------------------------- /libs/constants/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/.DS_Store -------------------------------------------------------------------------------- /libs/constants/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/auth.js -------------------------------------------------------------------------------- /libs/constants/bots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/bots.js -------------------------------------------------------------------------------- /libs/constants/colours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/colours.js -------------------------------------------------------------------------------- /libs/constants/disableFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/disableFilters.js -------------------------------------------------------------------------------- /libs/constants/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/notification.js -------------------------------------------------------------------------------- /libs/constants/onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/onboarding.js -------------------------------------------------------------------------------- /libs/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/constants/routes.js -------------------------------------------------------------------------------- /libs/firebase/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/firebase/config.js -------------------------------------------------------------------------------- /libs/firebase/firebaseSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/firebase/firebaseSetup.js -------------------------------------------------------------------------------- /libs/hooks/useFilterByTime.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/hooks/useFilterByTime.jsx -------------------------------------------------------------------------------- /libs/hooks/useRedirect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/hooks/useRedirect.jsx -------------------------------------------------------------------------------- /libs/hooks/useWatchFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/hooks/useWatchFields.jsx -------------------------------------------------------------------------------- /libs/providers/GlobalProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/providers/GlobalProvider.jsx -------------------------------------------------------------------------------- /libs/redux/slices/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/slices/authSlice.js -------------------------------------------------------------------------------- /libs/redux/slices/chatSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/slices/chatSlice.js -------------------------------------------------------------------------------- /libs/redux/slices/historySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/slices/historySlice.js -------------------------------------------------------------------------------- /libs/redux/slices/onboardingSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/slices/onboardingSlice.js -------------------------------------------------------------------------------- /libs/redux/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/slices/userSlice.js -------------------------------------------------------------------------------- /libs/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/store.js -------------------------------------------------------------------------------- /libs/redux/thunks/fetchChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/thunks/fetchChat.js -------------------------------------------------------------------------------- /libs/redux/thunks/fetchHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/thunks/fetchHistory.js -------------------------------------------------------------------------------- /libs/redux/thunks/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/thunks/tools.js -------------------------------------------------------------------------------- /libs/redux/thunks/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/redux/thunks/user.js -------------------------------------------------------------------------------- /libs/regex/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/regex/auth.js -------------------------------------------------------------------------------- /libs/regex/onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/regex/onboarding.js -------------------------------------------------------------------------------- /libs/regex/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/regex/routes.js -------------------------------------------------------------------------------- /libs/services/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/services/.DS_Store -------------------------------------------------------------------------------- /libs/services/chatbot/createChatSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/services/chatbot/createChatSession.js -------------------------------------------------------------------------------- /libs/services/chatbot/sendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/services/chatbot/sendMessage.js -------------------------------------------------------------------------------- /libs/services/user/manageUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/services/user/manageUser.js -------------------------------------------------------------------------------- /libs/services/user/signUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/services/user/signUp.js -------------------------------------------------------------------------------- /libs/theme/theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/theme/theme.jsx -------------------------------------------------------------------------------- /libs/utils/AuthUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/utils/AuthUtils.js -------------------------------------------------------------------------------- /libs/utils/FirebaseUtils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/utils/FirebaseUtils.jsx -------------------------------------------------------------------------------- /libs/utils/MiscellaneousUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/utils/MiscellaneousUtils.js -------------------------------------------------------------------------------- /libs/utils/ToolHistoryUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/utils/ToolHistoryUtils.js -------------------------------------------------------------------------------- /libs/utils/ToolUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/libs/utils/ToolUtils.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/package.json -------------------------------------------------------------------------------- /pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/.DS_Store -------------------------------------------------------------------------------- /pages/404/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/404/index.jsx -------------------------------------------------------------------------------- /pages/[toolId]/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/[toolId]/index.jsx -------------------------------------------------------------------------------- /pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/_app.jsx -------------------------------------------------------------------------------- /pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/_document.jsx -------------------------------------------------------------------------------- /pages/chat/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/chat/index.jsx -------------------------------------------------------------------------------- /pages/history/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/history/index.jsx -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/onboarding/[onboardingId]/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/onboarding/[onboardingId]/index.jsx -------------------------------------------------------------------------------- /pages/password-reset/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/password-reset/index.jsx -------------------------------------------------------------------------------- /pages/redirect/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/redirect/index.jsx -------------------------------------------------------------------------------- /pages/signin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/signin/index.jsx -------------------------------------------------------------------------------- /pages/signup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/pages/signup/index.jsx -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/RadicalX-Favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/RadicalX-Favicon-128x128.png -------------------------------------------------------------------------------- /public/RadicalX-Favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/RadicalX-Favicon-16x16.png -------------------------------------------------------------------------------- /public/RadicalX-Favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/RadicalX-Favicon-32x32.png -------------------------------------------------------------------------------- /public/RadicalX-Logo-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/RadicalX-Logo-256x256.png -------------------------------------------------------------------------------- /public/RadicalX-Logo-500x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/RadicalX-Logo-500x500.png -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/android-chrome-384x384.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/.DS_Store -------------------------------------------------------------------------------- /public/fonts/Ethnocentric/Ethnocentric-Regular-Italics.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Ethnocentric/Ethnocentric-Regular-Italics.otf -------------------------------------------------------------------------------- /public/fonts/Ethnocentric/Ethnocentric-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Ethnocentric/Ethnocentric-Regular.otf -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/.DS_Store -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.ttf -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.woff -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.woff -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.woff -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.woff -------------------------------------------------------------------------------- /public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/MoldeSemiExpanded/Molde-SemiExpanded-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Satoshi/Satoshi-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Satoshi/Satoshi-Black.otf -------------------------------------------------------------------------------- /public/fonts/Satoshi/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Satoshi/Satoshi-Bold.otf -------------------------------------------------------------------------------- /public/fonts/Satoshi/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Satoshi/Satoshi-Medium.otf -------------------------------------------------------------------------------- /public/fonts/Satoshi/Satoshi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/fonts/Satoshi/Satoshi-Regular.otf -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/index.html -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/sample.env -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/storage.rules -------------------------------------------------------------------------------- /styles/documentsStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/styles/documentsStyle.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/pageNotFoundStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/styles/pageNotFoundStyles.js -------------------------------------------------------------------------------- /styles/shared/sharedStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/styles/shared/sharedStyles.js -------------------------------------------------------------------------------- /templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/.DS_Store -------------------------------------------------------------------------------- /templates/Chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/Chat.jsx -------------------------------------------------------------------------------- /templates/Chat/ChatHistory/ChatHistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatHistory/ChatHistory.jsx -------------------------------------------------------------------------------- /templates/Chat/ChatHistory/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ChatHistory'; 2 | -------------------------------------------------------------------------------- /templates/Chat/ChatHistory/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatHistory/styles.js -------------------------------------------------------------------------------- /templates/Chat/ChatHistoryWindow/ChatHistoryWindow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatHistoryWindow/ChatHistoryWindow.jsx -------------------------------------------------------------------------------- /templates/Chat/ChatHistoryWindow/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ChatHistoryWindow'; 2 | -------------------------------------------------------------------------------- /templates/Chat/ChatHistoryWindow/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatHistoryWindow/styles.js -------------------------------------------------------------------------------- /templates/Chat/ChatSpinner/ChatSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatSpinner/ChatSpinner.jsx -------------------------------------------------------------------------------- /templates/Chat/ChatSpinner/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ChatSpinner'; 2 | -------------------------------------------------------------------------------- /templates/Chat/ChatSpinner/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ChatSpinner/styles.js -------------------------------------------------------------------------------- /templates/Chat/CodeComponent/CodeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/CodeComponent/CodeComponent.jsx -------------------------------------------------------------------------------- /templates/Chat/CodeComponent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CodeComponent'; 2 | -------------------------------------------------------------------------------- /templates/Chat/CodeComponent/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/CodeComponent/styles.js -------------------------------------------------------------------------------- /templates/Chat/DefaultPrompt/DefaultPrompt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/DefaultPrompt/DefaultPrompt.jsx -------------------------------------------------------------------------------- /templates/Chat/DefaultPrompt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/DefaultPrompt/index.js -------------------------------------------------------------------------------- /templates/Chat/DefaultPrompt/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/DefaultPrompt/styles.js -------------------------------------------------------------------------------- /templates/Chat/ImageMessage/ImageMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ImageMessage/ImageMessage.jsx -------------------------------------------------------------------------------- /templates/Chat/ImageMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ImageMessage'; 2 | -------------------------------------------------------------------------------- /templates/Chat/ImageMessage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/ImageMessage/styles.js -------------------------------------------------------------------------------- /templates/Chat/Message/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/Message/Message.jsx -------------------------------------------------------------------------------- /templates/Chat/Message/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Message'; 2 | -------------------------------------------------------------------------------- /templates/Chat/Options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/Options/Options.jsx -------------------------------------------------------------------------------- /templates/Chat/Options/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Options'; 2 | -------------------------------------------------------------------------------- /templates/Chat/Options/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/Options/styles.js -------------------------------------------------------------------------------- /templates/Chat/QuickActions/QuickActions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/QuickActions/QuickActions.jsx -------------------------------------------------------------------------------- /templates/Chat/QuickActions/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './QuickActions'; 2 | -------------------------------------------------------------------------------- /templates/Chat/QuickActions/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/QuickActions/styles.js -------------------------------------------------------------------------------- /templates/Chat/TextMessage/TextMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/TextMessage/TextMessage.jsx -------------------------------------------------------------------------------- /templates/Chat/TextMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TextMessage'; 2 | -------------------------------------------------------------------------------- /templates/Chat/TextMessage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/TextMessage/styles.js -------------------------------------------------------------------------------- /templates/Chat/VideoMessage/VideoMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/VideoMessage/VideoMessage.jsx -------------------------------------------------------------------------------- /templates/Chat/VideoMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './VideoMessage'; 2 | -------------------------------------------------------------------------------- /templates/Chat/VideoMessage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/VideoMessage/styles.js -------------------------------------------------------------------------------- /templates/Chat/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Chat'; 2 | -------------------------------------------------------------------------------- /templates/Chat/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Chat/styles.js -------------------------------------------------------------------------------- /templates/HomePage/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/HomePage/HomePage.jsx -------------------------------------------------------------------------------- /templates/HomePage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './HomePage'; 2 | -------------------------------------------------------------------------------- /templates/HomePage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/HomePage/styles.js -------------------------------------------------------------------------------- /templates/Onboarding/Complete/Complete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/Complete/Complete.jsx -------------------------------------------------------------------------------- /templates/Onboarding/Complete/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Complete'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/Complete/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/Complete/styles.js -------------------------------------------------------------------------------- /templates/Onboarding/FinalSteps/FinalSteps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/FinalSteps/FinalSteps.jsx -------------------------------------------------------------------------------- /templates/Onboarding/FinalSteps/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FinalSteps'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/FinalSteps/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/FinalSteps/styles.js -------------------------------------------------------------------------------- /templates/Onboarding/Onboarding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/Onboarding.jsx -------------------------------------------------------------------------------- /templates/Onboarding/ProfileSetupForm/ProfileSetupForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/ProfileSetupForm/ProfileSetupForm.jsx -------------------------------------------------------------------------------- /templates/Onboarding/ProfileSetupForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProfileSetupForm'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/ProfileSetupForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/ProfileSetupForm/styles.js -------------------------------------------------------------------------------- /templates/Onboarding/SystemConfigs/SystemsConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/SystemConfigs/SystemsConfig.jsx -------------------------------------------------------------------------------- /templates/Onboarding/SystemConfigs/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SystemConfigs'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/SystemConfigs/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/SystemConfigs/styles.js -------------------------------------------------------------------------------- /templates/Onboarding/Welcome/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/Welcome/Welcome.jsx -------------------------------------------------------------------------------- /templates/Onboarding/Welcome/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Welcome'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Onboarding'; 2 | -------------------------------------------------------------------------------- /templates/Onboarding/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Onboarding/styles.js -------------------------------------------------------------------------------- /templates/Reset/PasswordUpdated/PasswordUpdated.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Reset/PasswordUpdated/PasswordUpdated.jsx -------------------------------------------------------------------------------- /templates/Reset/PasswordUpdated/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './PasswordUpdated'; 2 | -------------------------------------------------------------------------------- /templates/Reset/PasswordUpdated/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Reset/PasswordUpdated/styles.js -------------------------------------------------------------------------------- /templates/Reset/ResetPassword/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Reset/ResetPassword/ResetPassword.jsx -------------------------------------------------------------------------------- /templates/Reset/ResetPassword/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ResetPassword'; 2 | -------------------------------------------------------------------------------- /templates/Reset/ResetPassword/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/Reset/ResetPassword/styles.js -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/CheckInbox/CheckInbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/ForgotPasswordPage/CheckInbox/CheckInbox.jsx -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/CheckInbox/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './CheckInbox'; 2 | -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/CheckInbox/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/ForgotPasswordPage/CheckInbox/styles.js -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/EnterEmailView/EnterEmailView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/ForgotPasswordPage/EnterEmailView/EnterEmailView.jsx -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/EnterEmailView/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './EnterEmailView'; 2 | -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/EnterEmailView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/ForgotPasswordPage/EnterEmailView/styles.js -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/ForgotPasswordPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/ForgotPasswordPage/ForgotPasswordPage.jsx -------------------------------------------------------------------------------- /templates/SignIn/ForgotPasswordPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ForgotPasswordPage'; 2 | -------------------------------------------------------------------------------- /templates/SignIn/SignInForm/SignInForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/SignInForm/SignInForm.jsx -------------------------------------------------------------------------------- /templates/SignIn/SignInForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SignInForm'; 2 | -------------------------------------------------------------------------------- /templates/SignIn/SignInForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignIn/SignInForm/styles.js -------------------------------------------------------------------------------- /templates/SignUp/SignUpForm/SignUpForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignUp/SignUpForm/SignUpForm.jsx -------------------------------------------------------------------------------- /templates/SignUp/SignUpForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SignUpForm'; 2 | -------------------------------------------------------------------------------- /templates/SignUp/SignUpForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignUp/SignUpForm/styles.js -------------------------------------------------------------------------------- /templates/SignUp/VerifyEmailPage/VerifyEmailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignUp/VerifyEmailPage/VerifyEmailPage.jsx -------------------------------------------------------------------------------- /templates/SignUp/VerifyEmailPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './VerifyEmailPage'; 2 | -------------------------------------------------------------------------------- /templates/SignUp/VerifyEmailPage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/templates/SignUp/VerifyEmailPage/styles.js -------------------------------------------------------------------------------- /tools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/.DS_Store -------------------------------------------------------------------------------- /tools/ToolPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/ToolPage.jsx -------------------------------------------------------------------------------- /tools/components/ToolCard/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolCard/Skeleton.jsx -------------------------------------------------------------------------------- /tools/components/ToolCard/ToolCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolCard/ToolCard.jsx -------------------------------------------------------------------------------- /tools/components/ToolCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolCard/index.js -------------------------------------------------------------------------------- /tools/components/ToolCard/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolCard/styles.js -------------------------------------------------------------------------------- /tools/components/ToolHistoryCard/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryCard/Skeleton.jsx -------------------------------------------------------------------------------- /tools/components/ToolHistoryCard/ToolHistoryCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryCard/ToolHistoryCard.jsx -------------------------------------------------------------------------------- /tools/components/ToolHistoryCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryCard/index.js -------------------------------------------------------------------------------- /tools/components/ToolHistoryCard/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryCard/styles.js -------------------------------------------------------------------------------- /tools/components/ToolHistoryListingContainer/ToolHistoryListingContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryListingContainer/ToolHistoryListingContainer.jsx -------------------------------------------------------------------------------- /tools/components/ToolHistoryListingContainer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolHistoryListingContainer'; 2 | -------------------------------------------------------------------------------- /tools/components/ToolHistoryListingContainer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolHistoryListingContainer/styles.js -------------------------------------------------------------------------------- /tools/components/ToolOutputHistoryDrawer/ToolOutputHistoryDrawer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolOutputHistoryDrawer/ToolOutputHistoryDrawer.jsx -------------------------------------------------------------------------------- /tools/components/ToolOutputHistoryDrawer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolOutputHistoryDrawer'; 2 | -------------------------------------------------------------------------------- /tools/components/ToolOutputHistoryDrawer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolOutputHistoryDrawer/styles.js -------------------------------------------------------------------------------- /tools/components/ToolOutputHistoryDrawer/toolRenderers/FlashCardsOutput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolOutputHistoryDrawer/toolRenderers/FlashCardsOutput.jsx -------------------------------------------------------------------------------- /tools/components/ToolOutputHistoryDrawer/toolRenderers/QuizOutput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolOutputHistoryDrawer/toolRenderers/QuizOutput.jsx -------------------------------------------------------------------------------- /tools/components/ToolRequestForm/ToolRequestForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolRequestForm/ToolRequestForm.jsx -------------------------------------------------------------------------------- /tools/components/ToolRequestForm/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolRequestForm'; 2 | -------------------------------------------------------------------------------- /tools/components/ToolRequestForm/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/components/ToolRequestForm/styles.js -------------------------------------------------------------------------------- /tools/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/index.js -------------------------------------------------------------------------------- /tools/data/slices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/slices/index.js -------------------------------------------------------------------------------- /tools/data/slices/toolHistorySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/slices/toolHistorySlice.js -------------------------------------------------------------------------------- /tools/data/slices/toolsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/slices/toolsSlice.js -------------------------------------------------------------------------------- /tools/data/thunks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/thunks/index.js -------------------------------------------------------------------------------- /tools/data/thunks/toolHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/data/thunks/toolHistory.js -------------------------------------------------------------------------------- /tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/index.js -------------------------------------------------------------------------------- /tools/libs/constants/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/libs/constants/inputs.js -------------------------------------------------------------------------------- /tools/libs/constants/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/libs/constants/tools.js -------------------------------------------------------------------------------- /tools/libs/hooks/useToolProps.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/libs/hooks/useToolProps.jsx -------------------------------------------------------------------------------- /tools/libs/services/submitPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/libs/services/submitPrompt.js -------------------------------------------------------------------------------- /tools/libs/utils/evaluateCondition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/libs/utils/evaluateCondition.js -------------------------------------------------------------------------------- /tools/outputs/FlashCardList/FlashCardList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/FlashCardList/FlashCardList.jsx -------------------------------------------------------------------------------- /tools/outputs/FlashCardList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './FlashCardList'; 2 | -------------------------------------------------------------------------------- /tools/outputs/FlashCardList/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/FlashCardList/styles.js -------------------------------------------------------------------------------- /tools/outputs/QuizResponse/QuizResponse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/QuizResponse/QuizResponse.jsx -------------------------------------------------------------------------------- /tools/outputs/QuizResponse/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './QuizResponse'; 2 | -------------------------------------------------------------------------------- /tools/outputs/QuizResponse/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/QuizResponse/styles.js -------------------------------------------------------------------------------- /tools/outputs/SyllabusGeneratorResponse/SyllabusGeneratorResponse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/SyllabusGeneratorResponse/SyllabusGeneratorResponse.jsx -------------------------------------------------------------------------------- /tools/outputs/SyllabusGeneratorResponse/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SyllabusGeneratorResponse'; 2 | -------------------------------------------------------------------------------- /tools/outputs/SyllabusGeneratorResponse/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/SyllabusGeneratorResponse/styles.js -------------------------------------------------------------------------------- /tools/outputs/WorksheetGeneratorResponse/WorksheetGeneratorResponse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/WorksheetGeneratorResponse/WorksheetGeneratorResponse.jsx -------------------------------------------------------------------------------- /tools/outputs/WorksheetGeneratorResponse/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './WorksheetGeneratorResponse'; 2 | -------------------------------------------------------------------------------- /tools/outputs/WorksheetGeneratorResponse/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/WorksheetGeneratorResponse/styles.js -------------------------------------------------------------------------------- /tools/outputs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/outputs/index.js -------------------------------------------------------------------------------- /tools/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/styles.js -------------------------------------------------------------------------------- /tools/views/ToolFormView/ToolFormView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolFormView/ToolFormView.jsx -------------------------------------------------------------------------------- /tools/views/ToolFormView/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolFormView'; 2 | -------------------------------------------------------------------------------- /tools/views/ToolFormView/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolFormView/styles.js -------------------------------------------------------------------------------- /tools/views/ToolHistoryPage/ToolHistoryPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolHistoryPage/ToolHistoryPage.jsx -------------------------------------------------------------------------------- /tools/views/ToolHistoryPage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolHistoryPage'; 2 | -------------------------------------------------------------------------------- /tools/views/ToolHistoryPage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolHistoryPage/styles.js -------------------------------------------------------------------------------- /tools/views/ToolPageSkeleton/ToolPageSkeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolPageSkeleton/ToolPageSkeleton.jsx -------------------------------------------------------------------------------- /tools/views/ToolPageSkeleton/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolPageSkeleton'; 2 | -------------------------------------------------------------------------------- /tools/views/ToolsListingContainer/ToolsListingContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolsListingContainer/ToolsListingContainer.jsx -------------------------------------------------------------------------------- /tools/views/ToolsListingContainer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ToolsListingContainer'; 2 | -------------------------------------------------------------------------------- /tools/views/ToolsListingContainer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibing-ai/marvel-platform/HEAD/tools/views/ToolsListingContainer/styles.js --------------------------------------------------------------------------------