├── .all-contributorsrc ├── .env ├── .gitignore ├── .husky └── pre-commit ├── .postcssrc ├── .prettierrc ├── README.md ├── _redirects ├── eslint.config.js ├── index.css ├── index.html ├── index.jsx ├── main.jsx ├── netlify.toml ├── package.json ├── public └── images │ ├── favicon.ico │ ├── logo-dark.png │ └── logo-light.png ├── src ├── components │ ├── BuildCard.jsx │ ├── BuildGallery.jsx │ ├── FilterButton.jsx │ ├── NoData.jsx │ ├── NoFilteredResults.jsx │ ├── NoSearchResults.jsx │ ├── SearchBar.jsx │ ├── TabsPage.jsx │ ├── chip-input-field │ │ └── index.jsx │ ├── form │ │ └── BuildFormFields.jsx │ ├── menu │ │ ├── FilterMenu.jsx │ │ ├── MenuItem.jsx │ │ └── UserMenu.jsx │ ├── modal │ │ ├── ActionModal.jsx │ │ ├── BuildActionModal.jsx │ │ └── index.jsx │ ├── search-select-field │ │ └── index.jsx │ ├── skeleton │ │ └── SkeletonBuildCard.jsx │ ├── text-input-field │ │ └── index.jsx │ ├── theme │ │ └── ThemeToggle.jsx │ └── tooltip │ │ └── index.jsx ├── context │ └── ThemeContext.jsx ├── features │ ├── accordion │ │ ├── AccordionItem.jsx │ │ ├── README.md │ │ ├── accordionData.js │ │ └── index.jsx │ ├── google-auth │ │ ├── FirebaseConfig.jsx │ │ ├── README.md │ │ └── index.jsx │ ├── guess-number │ │ ├── ActionButtons.jsx │ │ ├── FeedbackMessage.jsx │ │ ├── GuessInput.jsx │ │ ├── README.md │ │ └── index.jsx │ ├── http-get-request │ │ ├── GetRequestAsyncAwait.jsx │ │ ├── GetRequestErrorHandling.jsx │ │ ├── GetRequestHooks.jsx │ │ ├── GetRequestSetHeaders.jsx │ │ ├── README.md │ │ └── index.jsx │ ├── http-post-request │ │ ├── PostRequestAsyncAwait.jsx │ │ ├── PostRequestErrorHandling.jsx │ │ ├── PostRequestHooks.jsx │ │ ├── PostRequestSetHeaders.jsx │ │ ├── README.md │ │ └── index.jsx │ ├── image-gallery │ │ ├── ImageViewer.jsx │ │ ├── ModalViewer.jsx │ │ ├── README.md │ │ ├── ThumbnailBar.jsx │ │ ├── images.js │ │ └── index.jsx │ ├── image-generation │ │ ├── README.md │ │ ├── components │ │ │ ├── ControlsCard.jsx │ │ │ ├── DimensionSelect.jsx │ │ │ ├── KeywordChips.jsx │ │ │ ├── LoadingSpinner.jsx │ │ │ ├── ProviderSelect.jsx │ │ │ ├── ResultsGrid.jsx │ │ │ └── StylePresets.jsx │ │ ├── index.jsx │ │ └── utils │ │ │ ├── api.js │ │ │ ├── presets.js │ │ │ └── providers.js │ ├── number-to-words │ │ ├── InputNumber.jsx │ │ ├── README.md │ │ ├── WordsFormatCard.jsx │ │ ├── convertNumberToWordsInd.js │ │ ├── convertNumberToWordsIntl.js │ │ ├── formatInputNumber.js │ │ └── index.jsx │ ├── password-generator │ │ ├── CharacterOptions.jsx │ │ ├── PasswordLengthSlider.jsx │ │ ├── PasswordStrengthLabel.jsx │ │ ├── PasswordTextField.jsx │ │ ├── README.md │ │ ├── generatePassword.js │ │ └── index.jsx │ ├── password-strength │ │ ├── PasswordInput.jsx │ │ ├── PasswordSummary.jsx │ │ ├── ProgressBar.jsx │ │ ├── README.md │ │ └── index.jsx │ ├── redux-counter │ │ ├── Counter.jsx │ │ ├── README.md │ │ ├── counterSlice.jsx │ │ └── index.jsx │ ├── star-rating │ │ ├── StarClear.jsx │ │ ├── StarIcons.jsx │ │ └── index.jsx │ ├── stepper │ │ ├── README.md │ │ ├── StepSequenceHorizontal.jsx │ │ ├── StepSequenceVertical.jsx │ │ ├── StepperButtons.jsx │ │ ├── StepperMessage.jsx │ │ └── index.jsx │ ├── stopwatch │ │ ├── LapTable.jsx │ │ ├── README.md │ │ ├── TickCircle.jsx │ │ ├── TimerControls.jsx │ │ ├── TimerDisplay.jsx │ │ ├── formatTime.js │ │ └── index.jsx │ ├── string-converter │ │ ├── CaseVariantCard.jsx │ │ ├── README.md │ │ ├── StringInput.jsx │ │ ├── formatInputText.js │ │ └── index.jsx │ ├── todo-list │ │ ├── ListItem.jsx │ │ ├── README.md │ │ └── index.jsx │ └── word-counter │ │ ├── README.md │ │ ├── WordCounterButtons.jsx │ │ ├── WordStatsCard.jsx │ │ ├── WordTextArea.jsx │ │ └── index.jsx ├── hooks │ ├── useBuildForm.js │ ├── useImageGenerator.js │ └── useWindowSize.js ├── layout │ ├── Body.jsx │ ├── ContentWrapper.jsx │ ├── Error.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── Layout.jsx │ ├── Logo.jsx │ └── Sidebar.jsx ├── routes │ └── appRouter.jsx ├── services │ ├── buildService.js │ └── githubService.js ├── store │ ├── reducers │ │ └── authSlice.js │ └── store.js └── utils │ ├── constant.js │ ├── function.js │ ├── handleBuildSubmit.js │ ├── strings.js │ └── styles.js ├── tailwind.config.js └── vite.config.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npm run prettify -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/.postcssrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/_redirects -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/index.html -------------------------------------------------------------------------------- /index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/index.jsx -------------------------------------------------------------------------------- /main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/main.jsx -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/package.json -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/public/images/logo-dark.png -------------------------------------------------------------------------------- /public/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/public/images/logo-light.png -------------------------------------------------------------------------------- /src/components/BuildCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/BuildCard.jsx -------------------------------------------------------------------------------- /src/components/BuildGallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/BuildGallery.jsx -------------------------------------------------------------------------------- /src/components/FilterButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/FilterButton.jsx -------------------------------------------------------------------------------- /src/components/NoData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/NoData.jsx -------------------------------------------------------------------------------- /src/components/NoFilteredResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/NoFilteredResults.jsx -------------------------------------------------------------------------------- /src/components/NoSearchResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/NoSearchResults.jsx -------------------------------------------------------------------------------- /src/components/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/SearchBar.jsx -------------------------------------------------------------------------------- /src/components/TabsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/TabsPage.jsx -------------------------------------------------------------------------------- /src/components/chip-input-field/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/chip-input-field/index.jsx -------------------------------------------------------------------------------- /src/components/form/BuildFormFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/form/BuildFormFields.jsx -------------------------------------------------------------------------------- /src/components/menu/FilterMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/menu/FilterMenu.jsx -------------------------------------------------------------------------------- /src/components/menu/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/menu/MenuItem.jsx -------------------------------------------------------------------------------- /src/components/menu/UserMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/menu/UserMenu.jsx -------------------------------------------------------------------------------- /src/components/modal/ActionModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/modal/ActionModal.jsx -------------------------------------------------------------------------------- /src/components/modal/BuildActionModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/modal/BuildActionModal.jsx -------------------------------------------------------------------------------- /src/components/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/modal/index.jsx -------------------------------------------------------------------------------- /src/components/search-select-field/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/search-select-field/index.jsx -------------------------------------------------------------------------------- /src/components/skeleton/SkeletonBuildCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/skeleton/SkeletonBuildCard.jsx -------------------------------------------------------------------------------- /src/components/text-input-field/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/text-input-field/index.jsx -------------------------------------------------------------------------------- /src/components/theme/ThemeToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/theme/ThemeToggle.jsx -------------------------------------------------------------------------------- /src/components/tooltip/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/components/tooltip/index.jsx -------------------------------------------------------------------------------- /src/context/ThemeContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/context/ThemeContext.jsx -------------------------------------------------------------------------------- /src/features/accordion/AccordionItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/accordion/AccordionItem.jsx -------------------------------------------------------------------------------- /src/features/accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/accordion/README.md -------------------------------------------------------------------------------- /src/features/accordion/accordionData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/accordion/accordionData.js -------------------------------------------------------------------------------- /src/features/accordion/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/accordion/index.jsx -------------------------------------------------------------------------------- /src/features/google-auth/FirebaseConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/google-auth/FirebaseConfig.jsx -------------------------------------------------------------------------------- /src/features/google-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/google-auth/README.md -------------------------------------------------------------------------------- /src/features/google-auth/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/google-auth/index.jsx -------------------------------------------------------------------------------- /src/features/guess-number/ActionButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/guess-number/ActionButtons.jsx -------------------------------------------------------------------------------- /src/features/guess-number/FeedbackMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/guess-number/FeedbackMessage.jsx -------------------------------------------------------------------------------- /src/features/guess-number/GuessInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/guess-number/GuessInput.jsx -------------------------------------------------------------------------------- /src/features/guess-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/guess-number/README.md -------------------------------------------------------------------------------- /src/features/guess-number/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/guess-number/index.jsx -------------------------------------------------------------------------------- /src/features/http-get-request/GetRequestAsyncAwait.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/GetRequestAsyncAwait.jsx -------------------------------------------------------------------------------- /src/features/http-get-request/GetRequestErrorHandling.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/GetRequestErrorHandling.jsx -------------------------------------------------------------------------------- /src/features/http-get-request/GetRequestHooks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/GetRequestHooks.jsx -------------------------------------------------------------------------------- /src/features/http-get-request/GetRequestSetHeaders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/GetRequestSetHeaders.jsx -------------------------------------------------------------------------------- /src/features/http-get-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/README.md -------------------------------------------------------------------------------- /src/features/http-get-request/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-get-request/index.jsx -------------------------------------------------------------------------------- /src/features/http-post-request/PostRequestAsyncAwait.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/PostRequestAsyncAwait.jsx -------------------------------------------------------------------------------- /src/features/http-post-request/PostRequestErrorHandling.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/PostRequestErrorHandling.jsx -------------------------------------------------------------------------------- /src/features/http-post-request/PostRequestHooks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/PostRequestHooks.jsx -------------------------------------------------------------------------------- /src/features/http-post-request/PostRequestSetHeaders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/PostRequestSetHeaders.jsx -------------------------------------------------------------------------------- /src/features/http-post-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/README.md -------------------------------------------------------------------------------- /src/features/http-post-request/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/http-post-request/index.jsx -------------------------------------------------------------------------------- /src/features/image-gallery/ImageViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/ImageViewer.jsx -------------------------------------------------------------------------------- /src/features/image-gallery/ModalViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/ModalViewer.jsx -------------------------------------------------------------------------------- /src/features/image-gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/README.md -------------------------------------------------------------------------------- /src/features/image-gallery/ThumbnailBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/ThumbnailBar.jsx -------------------------------------------------------------------------------- /src/features/image-gallery/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/images.js -------------------------------------------------------------------------------- /src/features/image-gallery/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-gallery/index.jsx -------------------------------------------------------------------------------- /src/features/image-generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/README.md -------------------------------------------------------------------------------- /src/features/image-generation/components/ControlsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/ControlsCard.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/DimensionSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/DimensionSelect.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/KeywordChips.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/KeywordChips.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/LoadingSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/LoadingSpinner.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/ProviderSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/ProviderSelect.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/ResultsGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/ResultsGrid.jsx -------------------------------------------------------------------------------- /src/features/image-generation/components/StylePresets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/components/StylePresets.jsx -------------------------------------------------------------------------------- /src/features/image-generation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/index.jsx -------------------------------------------------------------------------------- /src/features/image-generation/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/utils/api.js -------------------------------------------------------------------------------- /src/features/image-generation/utils/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/utils/presets.js -------------------------------------------------------------------------------- /src/features/image-generation/utils/providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/image-generation/utils/providers.js -------------------------------------------------------------------------------- /src/features/number-to-words/InputNumber.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/InputNumber.jsx -------------------------------------------------------------------------------- /src/features/number-to-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/README.md -------------------------------------------------------------------------------- /src/features/number-to-words/WordsFormatCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/WordsFormatCard.jsx -------------------------------------------------------------------------------- /src/features/number-to-words/convertNumberToWordsInd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/convertNumberToWordsInd.js -------------------------------------------------------------------------------- /src/features/number-to-words/convertNumberToWordsIntl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/convertNumberToWordsIntl.js -------------------------------------------------------------------------------- /src/features/number-to-words/formatInputNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/formatInputNumber.js -------------------------------------------------------------------------------- /src/features/number-to-words/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/number-to-words/index.jsx -------------------------------------------------------------------------------- /src/features/password-generator/CharacterOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/CharacterOptions.jsx -------------------------------------------------------------------------------- /src/features/password-generator/PasswordLengthSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/PasswordLengthSlider.jsx -------------------------------------------------------------------------------- /src/features/password-generator/PasswordStrengthLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/PasswordStrengthLabel.jsx -------------------------------------------------------------------------------- /src/features/password-generator/PasswordTextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/PasswordTextField.jsx -------------------------------------------------------------------------------- /src/features/password-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/README.md -------------------------------------------------------------------------------- /src/features/password-generator/generatePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/generatePassword.js -------------------------------------------------------------------------------- /src/features/password-generator/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-generator/index.jsx -------------------------------------------------------------------------------- /src/features/password-strength/PasswordInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-strength/PasswordInput.jsx -------------------------------------------------------------------------------- /src/features/password-strength/PasswordSummary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-strength/PasswordSummary.jsx -------------------------------------------------------------------------------- /src/features/password-strength/ProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-strength/ProgressBar.jsx -------------------------------------------------------------------------------- /src/features/password-strength/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-strength/README.md -------------------------------------------------------------------------------- /src/features/password-strength/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/password-strength/index.jsx -------------------------------------------------------------------------------- /src/features/redux-counter/Counter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/redux-counter/Counter.jsx -------------------------------------------------------------------------------- /src/features/redux-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/redux-counter/README.md -------------------------------------------------------------------------------- /src/features/redux-counter/counterSlice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/redux-counter/counterSlice.jsx -------------------------------------------------------------------------------- /src/features/redux-counter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/redux-counter/index.jsx -------------------------------------------------------------------------------- /src/features/star-rating/StarClear.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/star-rating/StarClear.jsx -------------------------------------------------------------------------------- /src/features/star-rating/StarIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/star-rating/StarIcons.jsx -------------------------------------------------------------------------------- /src/features/star-rating/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/star-rating/index.jsx -------------------------------------------------------------------------------- /src/features/stepper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/README.md -------------------------------------------------------------------------------- /src/features/stepper/StepSequenceHorizontal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/StepSequenceHorizontal.jsx -------------------------------------------------------------------------------- /src/features/stepper/StepSequenceVertical.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/StepSequenceVertical.jsx -------------------------------------------------------------------------------- /src/features/stepper/StepperButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/StepperButtons.jsx -------------------------------------------------------------------------------- /src/features/stepper/StepperMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/StepperMessage.jsx -------------------------------------------------------------------------------- /src/features/stepper/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stepper/index.jsx -------------------------------------------------------------------------------- /src/features/stopwatch/LapTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/LapTable.jsx -------------------------------------------------------------------------------- /src/features/stopwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/README.md -------------------------------------------------------------------------------- /src/features/stopwatch/TickCircle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/TickCircle.jsx -------------------------------------------------------------------------------- /src/features/stopwatch/TimerControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/TimerControls.jsx -------------------------------------------------------------------------------- /src/features/stopwatch/TimerDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/TimerDisplay.jsx -------------------------------------------------------------------------------- /src/features/stopwatch/formatTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/formatTime.js -------------------------------------------------------------------------------- /src/features/stopwatch/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/stopwatch/index.jsx -------------------------------------------------------------------------------- /src/features/string-converter/CaseVariantCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/string-converter/CaseVariantCard.jsx -------------------------------------------------------------------------------- /src/features/string-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/string-converter/README.md -------------------------------------------------------------------------------- /src/features/string-converter/StringInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/string-converter/StringInput.jsx -------------------------------------------------------------------------------- /src/features/string-converter/formatInputText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/string-converter/formatInputText.js -------------------------------------------------------------------------------- /src/features/string-converter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/string-converter/index.jsx -------------------------------------------------------------------------------- /src/features/todo-list/ListItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/todo-list/ListItem.jsx -------------------------------------------------------------------------------- /src/features/todo-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/todo-list/README.md -------------------------------------------------------------------------------- /src/features/todo-list/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/todo-list/index.jsx -------------------------------------------------------------------------------- /src/features/word-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/word-counter/README.md -------------------------------------------------------------------------------- /src/features/word-counter/WordCounterButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/word-counter/WordCounterButtons.jsx -------------------------------------------------------------------------------- /src/features/word-counter/WordStatsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/word-counter/WordStatsCard.jsx -------------------------------------------------------------------------------- /src/features/word-counter/WordTextArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/word-counter/WordTextArea.jsx -------------------------------------------------------------------------------- /src/features/word-counter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/features/word-counter/index.jsx -------------------------------------------------------------------------------- /src/hooks/useBuildForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/hooks/useBuildForm.js -------------------------------------------------------------------------------- /src/hooks/useImageGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/hooks/useImageGenerator.js -------------------------------------------------------------------------------- /src/hooks/useWindowSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/hooks/useWindowSize.js -------------------------------------------------------------------------------- /src/layout/Body.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Body.jsx -------------------------------------------------------------------------------- /src/layout/ContentWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/ContentWrapper.jsx -------------------------------------------------------------------------------- /src/layout/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Error.jsx -------------------------------------------------------------------------------- /src/layout/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Footer.jsx -------------------------------------------------------------------------------- /src/layout/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Header.jsx -------------------------------------------------------------------------------- /src/layout/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Layout.jsx -------------------------------------------------------------------------------- /src/layout/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Logo.jsx -------------------------------------------------------------------------------- /src/layout/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/layout/Sidebar.jsx -------------------------------------------------------------------------------- /src/routes/appRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/routes/appRouter.jsx -------------------------------------------------------------------------------- /src/services/buildService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/services/buildService.js -------------------------------------------------------------------------------- /src/services/githubService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/services/githubService.js -------------------------------------------------------------------------------- /src/store/reducers/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/store/reducers/authSlice.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/utils/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/utils/constant.js -------------------------------------------------------------------------------- /src/utils/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/utils/function.js -------------------------------------------------------------------------------- /src/utils/handleBuildSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/utils/handleBuildSubmit.js -------------------------------------------------------------------------------- /src/utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/utils/strings.js -------------------------------------------------------------------------------- /src/utils/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/src/utils/styles.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/DevFoundry/HEAD/vite.config.js --------------------------------------------------------------------------------