├── .github └── workflows │ └── pipeline.yml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── clean-template ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .prettierrc.json ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── _redirects │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ ├── icons │ │ │ ├── social-facebook.png │ │ │ └── social-google.svg │ │ └── images │ │ │ └── logo │ │ │ └── png │ │ │ ├── Color_logo_nobg.png │ │ │ └── Color_logotext2_nobg.png │ ├── components │ │ ├── cardHeader │ │ │ └── index.jsx │ │ ├── dataTable │ │ │ └── index.jsx │ │ ├── footer │ │ │ └── index.jsx │ │ ├── formInput │ │ │ └── index.jsx │ │ ├── layouts │ │ │ ├── customization │ │ │ │ └── index.jsx │ │ │ ├── mainLayout │ │ │ │ ├── index.jsx │ │ │ │ └── navItems.js │ │ │ └── minimalLayout │ │ │ │ └── index.jsx │ │ ├── loader │ │ │ └── index.jsx │ │ ├── mainHeader │ │ │ ├── index.jsx │ │ │ ├── loggedUser.jsx │ │ │ ├── notificationButton.jsx │ │ │ └── searchBar.jsx │ │ ├── modal │ │ │ └── index.jsx │ │ ├── navbar │ │ │ ├── index.jsx │ │ │ └── navLinks │ │ │ │ ├── index.jsx │ │ │ │ ├── navItem.jsx │ │ │ │ └── navMenu.jsx │ │ ├── pageHeader │ │ │ └── index.jsx │ │ ├── slider │ │ │ └── index.jsx │ │ └── snackbar │ │ │ └── index.jsx │ ├── main.jsx │ ├── pages │ │ └── sample │ │ │ ├── index.jsx │ │ │ └── sampleTabsPage.jsx │ ├── store │ │ ├── index.jsx │ │ └── theme │ │ │ ├── index.js │ │ │ └── selectors.js │ └── utils │ │ ├── constants.js │ │ ├── helpers │ │ ├── getDefaultChartsColors.js │ │ ├── getTransitionStyles.js │ │ ├── layoutHeight.js │ │ ├── passwordStrength.js │ │ └── scrollToTop.js │ │ ├── hocs │ │ ├── widthPageTransition.jsx │ │ ├── withLazyLoadably.jsx │ │ ├── withScrollTopFabButton.jsx │ │ └── withScrollTopOnRouteChange.jsx │ │ ├── hooks │ │ ├── useAutoCounter.jsx │ │ └── useIntervalCounter.jsx │ │ ├── routes │ │ └── index.jsx │ │ └── theme │ │ ├── compStyleOverride.js │ │ ├── index.jsx │ │ ├── palette.js │ │ └── typography.js └── vite.config.js └── complete-template ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .prettierrc.json ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public ├── _redirects └── vite.svg ├── src ├── App.jsx ├── _mocks │ ├── countries.js │ ├── customers.js │ ├── employees.js │ ├── notifications.js │ └── products.js ├── assets │ ├── css │ │ └── style.css │ ├── icons │ │ ├── social-facebook.png │ │ └── social-google.svg │ └── images │ │ ├── avatars │ │ ├── avatar_1.png │ │ ├── avatar_10.png │ │ ├── avatar_11.png │ │ ├── avatar_12.png │ │ ├── avatar_13.jpg │ │ ├── avatar_2.png │ │ ├── avatar_3.png │ │ ├── avatar_4.png │ │ ├── avatar_5.png │ │ ├── avatar_6.png │ │ ├── avatar_7.png │ │ ├── avatar_8.png │ │ └── avatar_9.png │ │ ├── bitcoin_1.svg │ │ ├── bitcoin_2.svg │ │ ├── discover_card.png │ │ ├── logo │ │ ├── png │ │ │ ├── Color_logo_nobg.png │ │ │ ├── Color_logo_withbg.png │ │ │ ├── Color_logotext2_nobg.png │ │ │ ├── Color_logotext_nobg.png │ │ │ ├── White_logo_nobg.png │ │ │ ├── White_logotext_nobg.png │ │ │ └── black_logo_nobg.png │ │ ├── square_logo.png │ │ └── svg │ │ │ ├── Black logo - no background.svg │ │ │ ├── Color logo - no background.svg │ │ │ ├── Color logo with background.svg │ │ │ └── White logo - no background.svg │ │ ├── mastercard_card.png │ │ ├── products │ │ ├── product_1.jpg │ │ ├── product_2.jpg │ │ ├── product_3.jpg │ │ ├── product_4.jpg │ │ └── product_5.jpg │ │ └── visa_card.png ├── components │ ├── cardHeader │ │ └── index.jsx │ ├── dataTable │ │ └── index.jsx │ ├── footer │ │ └── index.jsx │ ├── formInput │ │ └── index.jsx │ ├── layouts │ │ ├── customization │ │ │ └── index.jsx │ │ ├── mainLayout │ │ │ ├── index.jsx │ │ │ └── navItems.js │ │ └── minimalLayout │ │ │ └── index.jsx │ ├── loader │ │ └── index.jsx │ ├── mainHeader │ │ ├── index.jsx │ │ ├── loggedUser.jsx │ │ ├── notificationButton.jsx │ │ └── searchBar.jsx │ ├── modal │ │ └── index.jsx │ ├── navbar │ │ ├── index.jsx │ │ └── navLinks │ │ │ ├── index.jsx │ │ │ ├── navItem.jsx │ │ │ └── navMenu.jsx │ ├── pageHeader │ │ └── index.jsx │ ├── slider │ │ └── index.jsx │ └── snackbar │ │ └── index.jsx ├── main.jsx ├── pages │ ├── componentsPages │ │ ├── carousel │ │ │ ├── data.js │ │ │ └── index.jsx │ │ ├── forms │ │ │ └── index.jsx │ │ ├── loaders │ │ │ └── index.jsx │ │ ├── modal │ │ │ ├── index.jsx │ │ │ └── modalOptions.jsx │ │ ├── navigation │ │ │ ├── index.jsx │ │ │ └── navItems.js │ │ ├── snackbar │ │ │ └── index.jsx │ │ └── tables │ │ │ ├── basicTable.jsx │ │ │ ├── dataTables.jsx │ │ │ └── index.jsx │ ├── dashboardsPages │ │ ├── dashboard1 │ │ │ ├── bitcoinSection.jsx │ │ │ ├── graphsSection.jsx │ │ │ ├── index.jsx │ │ │ ├── productsSection.jsx │ │ │ ├── statsSection.jsx │ │ │ ├── transactionsSection.jsx │ │ │ └── welcomeSection.jsx │ │ ├── dashboard2 │ │ │ ├── activitiesCard.jsx │ │ │ ├── contactCard.jsx │ │ │ ├── customerCard.jsx │ │ │ ├── index.jsx │ │ │ ├── mostVisitedCard.jsx │ │ │ ├── pageImpressionsCard.jsx │ │ │ ├── saleProgressCard.jsx │ │ │ ├── salesOverviewCard.jsx │ │ │ ├── shareThougtsCard.jsx │ │ │ └── todoListCard.jsx │ │ ├── dashboard3 │ │ │ ├── activitiesSection.jsx │ │ │ ├── earningsSection.jsx │ │ │ ├── index.jsx │ │ │ ├── productsSection.jsx │ │ │ ├── salesCard.jsx │ │ │ ├── statsSection.jsx │ │ │ └── suggestedPeople.jsx │ │ ├── dashboard4 │ │ │ ├── index.jsx │ │ │ ├── visitorsSection.jsx │ │ │ └── welcomeSection.jsx │ │ └── dashboard5 │ │ │ ├── hoursSection.jsx │ │ │ ├── index.jsx │ │ │ ├── popularProductsSection.jsx │ │ │ └── reportSection.jsx │ ├── editProfile │ │ ├── account.jsx │ │ ├── billing.jsx │ │ ├── index.jsx │ │ ├── profile.jsx │ │ └── security.jsx │ ├── errorPages │ │ ├── 403 │ │ │ └── index.jsx │ │ ├── 404 │ │ │ └── index.jsx │ │ ├── 500 │ │ │ └── index.jsx │ │ ├── 503 │ │ │ └── index.jsx │ │ └── 505 │ │ │ └── index.jsx │ ├── loginPages │ │ ├── login │ │ │ └── index.jsx │ │ ├── loginSimple │ │ │ └── index.jsx │ │ └── loginSplit │ │ │ └── index.jsx │ ├── notificationsPage │ │ └── index.jsx │ ├── pricingPages │ │ ├── pricing1 │ │ │ └── index.jsx │ │ └── pricing2 │ │ │ └── index.jsx │ ├── sample │ │ ├── index.jsx │ │ └── sampleTabsPage.jsx │ ├── signupPages │ │ ├── signup │ │ │ └── index.jsx │ │ ├── signupSimple │ │ │ └── index.jsx │ │ └── signupSplit │ │ │ ├── index.jsx │ │ │ ├── personalDataTab.jsx │ │ │ ├── signupButtonsContainer.jsx │ │ │ ├── signupContext.jsx │ │ │ ├── successfulRegistration.jsx │ │ │ ├── userDataFormTab.jsx │ │ │ └── userTypeTab.jsx │ ├── themePages │ │ ├── themeColors │ │ │ ├── index.jsx │ │ │ └── themeColorsData.jsx │ │ ├── themeShadow │ │ │ └── index.jsx │ │ └── themeTypography │ │ │ ├── basicTypography.jsx │ │ │ └── index.jsx │ ├── uiComponentsPages │ │ ├── card │ │ │ └── index.jsx │ │ ├── cardHeader │ │ │ └── index.jsx │ │ └── pageHeader │ │ │ └── index.jsx │ └── wip │ │ └── index.jsx ├── store │ ├── index.jsx │ └── theme │ │ ├── index.js │ │ └── selectors.js └── utils │ ├── constants.js │ ├── helpers │ ├── getDefaultChartsColors.js │ ├── getTransitionStyles.js │ ├── layoutHeight.js │ ├── passwordStrength.js │ └── scrollToTop.js │ ├── hocs │ ├── widthPageTransition.jsx │ ├── withLazyLoadably.jsx │ ├── withScrollTopFabButton.jsx │ └── withScrollTopOnRouteChange.jsx │ ├── hooks │ ├── useAutoCounter.jsx │ └── useIntervalCounter.jsx │ ├── routes │ └── index.jsx │ └── theme │ ├── compStyleOverride.js │ ├── index.jsx │ ├── palette.js │ └── typography.js └── vite.config.js /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/README.md -------------------------------------------------------------------------------- /clean-template/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules/* 3 | vite.config.js 4 | .eslintrc.json -------------------------------------------------------------------------------- /clean-template/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/.eslintrc.json -------------------------------------------------------------------------------- /clean-template/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/.gitattributes -------------------------------------------------------------------------------- /clean-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/.gitignore -------------------------------------------------------------------------------- /clean-template/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/.prettierrc.json -------------------------------------------------------------------------------- /clean-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/index.html -------------------------------------------------------------------------------- /clean-template/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/jsconfig.json -------------------------------------------------------------------------------- /clean-template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/package-lock.json -------------------------------------------------------------------------------- /clean-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/package.json -------------------------------------------------------------------------------- /clean-template/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /clean-template/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/public/vite.svg -------------------------------------------------------------------------------- /clean-template/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/App.jsx -------------------------------------------------------------------------------- /clean-template/src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/assets/css/style.css -------------------------------------------------------------------------------- /clean-template/src/assets/icons/social-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/assets/icons/social-facebook.png -------------------------------------------------------------------------------- /clean-template/src/assets/icons/social-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/assets/icons/social-google.svg -------------------------------------------------------------------------------- /clean-template/src/assets/images/logo/png/Color_logo_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/assets/images/logo/png/Color_logo_nobg.png -------------------------------------------------------------------------------- /clean-template/src/assets/images/logo/png/Color_logotext2_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/assets/images/logo/png/Color_logotext2_nobg.png -------------------------------------------------------------------------------- /clean-template/src/components/cardHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/cardHeader/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/dataTable/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/dataTable/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/footer/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/formInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/formInput/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/layouts/customization/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/layouts/customization/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/layouts/mainLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/layouts/mainLayout/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/layouts/mainLayout/navItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/layouts/mainLayout/navItems.js -------------------------------------------------------------------------------- /clean-template/src/components/layouts/minimalLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/layouts/minimalLayout/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/loader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/loader/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/mainHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/mainHeader/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/mainHeader/loggedUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/mainHeader/loggedUser.jsx -------------------------------------------------------------------------------- /clean-template/src/components/mainHeader/notificationButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/mainHeader/notificationButton.jsx -------------------------------------------------------------------------------- /clean-template/src/components/mainHeader/searchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/mainHeader/searchBar.jsx -------------------------------------------------------------------------------- /clean-template/src/components/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/modal/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/navbar/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/navbar/navLinks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/navbar/navLinks/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/navbar/navLinks/navItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/navbar/navLinks/navItem.jsx -------------------------------------------------------------------------------- /clean-template/src/components/navbar/navLinks/navMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/navbar/navLinks/navMenu.jsx -------------------------------------------------------------------------------- /clean-template/src/components/pageHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/pageHeader/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/slider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/slider/index.jsx -------------------------------------------------------------------------------- /clean-template/src/components/snackbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/components/snackbar/index.jsx -------------------------------------------------------------------------------- /clean-template/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/main.jsx -------------------------------------------------------------------------------- /clean-template/src/pages/sample/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/pages/sample/index.jsx -------------------------------------------------------------------------------- /clean-template/src/pages/sample/sampleTabsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/pages/sample/sampleTabsPage.jsx -------------------------------------------------------------------------------- /clean-template/src/store/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/store/index.jsx -------------------------------------------------------------------------------- /clean-template/src/store/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/store/theme/index.js -------------------------------------------------------------------------------- /clean-template/src/store/theme/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/store/theme/selectors.js -------------------------------------------------------------------------------- /clean-template/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/constants.js -------------------------------------------------------------------------------- /clean-template/src/utils/helpers/getDefaultChartsColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/helpers/getDefaultChartsColors.js -------------------------------------------------------------------------------- /clean-template/src/utils/helpers/getTransitionStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/helpers/getTransitionStyles.js -------------------------------------------------------------------------------- /clean-template/src/utils/helpers/layoutHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/helpers/layoutHeight.js -------------------------------------------------------------------------------- /clean-template/src/utils/helpers/passwordStrength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/helpers/passwordStrength.js -------------------------------------------------------------------------------- /clean-template/src/utils/helpers/scrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/helpers/scrollToTop.js -------------------------------------------------------------------------------- /clean-template/src/utils/hocs/widthPageTransition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hocs/widthPageTransition.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/hocs/withLazyLoadably.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hocs/withLazyLoadably.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/hocs/withScrollTopFabButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hocs/withScrollTopFabButton.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/hocs/withScrollTopOnRouteChange.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hocs/withScrollTopOnRouteChange.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/hooks/useAutoCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hooks/useAutoCounter.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/hooks/useIntervalCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/hooks/useIntervalCounter.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/routes/index.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/theme/compStyleOverride.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/theme/compStyleOverride.js -------------------------------------------------------------------------------- /clean-template/src/utils/theme/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/theme/index.jsx -------------------------------------------------------------------------------- /clean-template/src/utils/theme/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/theme/palette.js -------------------------------------------------------------------------------- /clean-template/src/utils/theme/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/src/utils/theme/typography.js -------------------------------------------------------------------------------- /clean-template/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/clean-template/vite.config.js -------------------------------------------------------------------------------- /complete-template/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules/* 3 | vite.config.js 4 | .eslintrc.json -------------------------------------------------------------------------------- /complete-template/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/.eslintrc.json -------------------------------------------------------------------------------- /complete-template/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/.gitattributes -------------------------------------------------------------------------------- /complete-template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/.gitignore -------------------------------------------------------------------------------- /complete-template/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/.prettierrc.json -------------------------------------------------------------------------------- /complete-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/index.html -------------------------------------------------------------------------------- /complete-template/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/jsconfig.json -------------------------------------------------------------------------------- /complete-template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/package-lock.json -------------------------------------------------------------------------------- /complete-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/package.json -------------------------------------------------------------------------------- /complete-template/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /complete-template/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/public/vite.svg -------------------------------------------------------------------------------- /complete-template/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/App.jsx -------------------------------------------------------------------------------- /complete-template/src/_mocks/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/_mocks/countries.js -------------------------------------------------------------------------------- /complete-template/src/_mocks/customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/_mocks/customers.js -------------------------------------------------------------------------------- /complete-template/src/_mocks/employees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/_mocks/employees.js -------------------------------------------------------------------------------- /complete-template/src/_mocks/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/_mocks/notifications.js -------------------------------------------------------------------------------- /complete-template/src/_mocks/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/_mocks/products.js -------------------------------------------------------------------------------- /complete-template/src/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/css/style.css -------------------------------------------------------------------------------- /complete-template/src/assets/icons/social-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/icons/social-facebook.png -------------------------------------------------------------------------------- /complete-template/src/assets/icons/social-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/icons/social-google.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_1.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_10.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_11.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_12.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_13.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_2.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_3.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_4.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_5.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_6.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_7.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_8.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/avatars/avatar_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/avatars/avatar_9.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/bitcoin_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/bitcoin_1.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/bitcoin_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/bitcoin_2.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/discover_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/discover_card.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/Color_logo_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/Color_logo_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/Color_logo_withbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/Color_logo_withbg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/Color_logotext2_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/Color_logotext2_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/Color_logotext_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/Color_logotext_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/White_logo_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/White_logo_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/White_logotext_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/White_logotext_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/png/black_logo_nobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/png/black_logo_nobg.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/square_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/square_logo.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/svg/Black logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/svg/Black logo - no background.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/svg/Color logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/svg/Color logo - no background.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/svg/Color logo with background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/svg/Color logo with background.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/logo/svg/White logo - no background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/logo/svg/White logo - no background.svg -------------------------------------------------------------------------------- /complete-template/src/assets/images/mastercard_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/mastercard_card.png -------------------------------------------------------------------------------- /complete-template/src/assets/images/products/product_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/products/product_1.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/products/product_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/products/product_2.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/products/product_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/products/product_3.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/products/product_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/products/product_4.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/products/product_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/products/product_5.jpg -------------------------------------------------------------------------------- /complete-template/src/assets/images/visa_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/assets/images/visa_card.png -------------------------------------------------------------------------------- /complete-template/src/components/cardHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/cardHeader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/dataTable/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/dataTable/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/footer/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/formInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/formInput/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/layouts/customization/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/layouts/customization/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/layouts/mainLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/layouts/mainLayout/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/layouts/mainLayout/navItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/layouts/mainLayout/navItems.js -------------------------------------------------------------------------------- /complete-template/src/components/layouts/minimalLayout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/layouts/minimalLayout/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/loader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/loader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/mainHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/mainHeader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/mainHeader/loggedUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/mainHeader/loggedUser.jsx -------------------------------------------------------------------------------- /complete-template/src/components/mainHeader/notificationButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/mainHeader/notificationButton.jsx -------------------------------------------------------------------------------- /complete-template/src/components/mainHeader/searchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/mainHeader/searchBar.jsx -------------------------------------------------------------------------------- /complete-template/src/components/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/modal/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/navbar/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/navbar/navLinks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/navbar/navLinks/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/navbar/navLinks/navItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/navbar/navLinks/navItem.jsx -------------------------------------------------------------------------------- /complete-template/src/components/navbar/navLinks/navMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/navbar/navLinks/navMenu.jsx -------------------------------------------------------------------------------- /complete-template/src/components/pageHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/pageHeader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/slider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/slider/index.jsx -------------------------------------------------------------------------------- /complete-template/src/components/snackbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/components/snackbar/index.jsx -------------------------------------------------------------------------------- /complete-template/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/main.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/carousel/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/carousel/data.js -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/carousel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/carousel/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/forms/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/forms/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/loaders/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/loaders/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/modal/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/modal/modalOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/modal/modalOptions.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/navigation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/navigation/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/navigation/navItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/navigation/navItems.js -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/snackbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/snackbar/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/tables/basicTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/tables/basicTable.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/tables/dataTables.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/tables/dataTables.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/componentsPages/tables/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/componentsPages/tables/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/bitcoinSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/bitcoinSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/graphsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/graphsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/productsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/productsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/statsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/statsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/transactionsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/transactionsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard1/welcomeSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard1/welcomeSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/activitiesCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/activitiesCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/contactCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/contactCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/customerCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/customerCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/mostVisitedCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/mostVisitedCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/pageImpressionsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/pageImpressionsCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/saleProgressCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/saleProgressCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/salesOverviewCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/salesOverviewCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/shareThougtsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/shareThougtsCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard2/todoListCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard2/todoListCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/activitiesSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/activitiesSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/earningsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/earningsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/productsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/productsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/salesCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/salesCard.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/statsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/statsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard3/suggestedPeople.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard3/suggestedPeople.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard4/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard4/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard4/visitorsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard4/visitorsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard4/welcomeSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard4/welcomeSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard5/hoursSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard5/hoursSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard5/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard5/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard5/popularProductsSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard5/popularProductsSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/dashboardsPages/dashboard5/reportSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/dashboardsPages/dashboard5/reportSection.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/editProfile/account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/editProfile/account.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/editProfile/billing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/editProfile/billing.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/editProfile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/editProfile/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/editProfile/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/editProfile/profile.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/editProfile/security.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/editProfile/security.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/errorPages/403/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/errorPages/403/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/errorPages/404/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/errorPages/404/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/errorPages/500/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/errorPages/500/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/errorPages/503/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/errorPages/503/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/errorPages/505/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/errorPages/505/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/loginPages/login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/loginPages/login/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/loginPages/loginSimple/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/loginPages/loginSimple/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/loginPages/loginSplit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/loginPages/loginSplit/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/notificationsPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/notificationsPage/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/pricingPages/pricing1/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/pricingPages/pricing1/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/pricingPages/pricing2/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/pricingPages/pricing2/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/sample/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/sample/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/sample/sampleTabsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/sample/sampleTabsPage.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signup/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSimple/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSimple/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/personalDataTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/personalDataTab.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/signupButtonsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/signupButtonsContainer.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/signupContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/signupContext.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/successfulRegistration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/successfulRegistration.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/userDataFormTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/userDataFormTab.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/signupPages/signupSplit/userTypeTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/signupPages/signupSplit/userTypeTab.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/themePages/themeColors/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/themePages/themeColors/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/themePages/themeColors/themeColorsData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/themePages/themeColors/themeColorsData.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/themePages/themeShadow/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/themePages/themeShadow/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/themePages/themeTypography/basicTypography.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/themePages/themeTypography/basicTypography.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/themePages/themeTypography/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/themePages/themeTypography/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/uiComponentsPages/card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/uiComponentsPages/card/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/uiComponentsPages/cardHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/uiComponentsPages/cardHeader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/uiComponentsPages/pageHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/uiComponentsPages/pageHeader/index.jsx -------------------------------------------------------------------------------- /complete-template/src/pages/wip/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/pages/wip/index.jsx -------------------------------------------------------------------------------- /complete-template/src/store/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/store/index.jsx -------------------------------------------------------------------------------- /complete-template/src/store/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/store/theme/index.js -------------------------------------------------------------------------------- /complete-template/src/store/theme/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/store/theme/selectors.js -------------------------------------------------------------------------------- /complete-template/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/constants.js -------------------------------------------------------------------------------- /complete-template/src/utils/helpers/getDefaultChartsColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/helpers/getDefaultChartsColors.js -------------------------------------------------------------------------------- /complete-template/src/utils/helpers/getTransitionStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/helpers/getTransitionStyles.js -------------------------------------------------------------------------------- /complete-template/src/utils/helpers/layoutHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/helpers/layoutHeight.js -------------------------------------------------------------------------------- /complete-template/src/utils/helpers/passwordStrength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/helpers/passwordStrength.js -------------------------------------------------------------------------------- /complete-template/src/utils/helpers/scrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/helpers/scrollToTop.js -------------------------------------------------------------------------------- /complete-template/src/utils/hocs/widthPageTransition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hocs/widthPageTransition.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/hocs/withLazyLoadably.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hocs/withLazyLoadably.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/hocs/withScrollTopFabButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hocs/withScrollTopFabButton.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/hocs/withScrollTopOnRouteChange.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hocs/withScrollTopOnRouteChange.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/hooks/useAutoCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hooks/useAutoCounter.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/hooks/useIntervalCounter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/hooks/useIntervalCounter.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/routes/index.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/theme/compStyleOverride.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/theme/compStyleOverride.js -------------------------------------------------------------------------------- /complete-template/src/utils/theme/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/theme/index.jsx -------------------------------------------------------------------------------- /complete-template/src/utils/theme/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/theme/palette.js -------------------------------------------------------------------------------- /complete-template/src/utils/theme/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/src/utils/theme/typography.js -------------------------------------------------------------------------------- /complete-template/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tono2007/slim-free-react-mui-template/HEAD/complete-template/vite.config.js --------------------------------------------------------------------------------