├── .editorconfig ├── .gitattributes ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── prettier.config.mjs ├── public ├── assets │ ├── auth-widgets.png │ ├── avatar-1.png │ ├── avatar-10.png │ ├── avatar-11.png │ ├── avatar-2.png │ ├── avatar-3.png │ ├── avatar-4.png │ ├── avatar-5.png │ ├── avatar-6.png │ ├── avatar-7.png │ ├── avatar-8.png │ ├── avatar-9.png │ ├── avatar.png │ ├── devias-kit-pro.png │ ├── error-401.png │ ├── error-404.png │ ├── error-500.png │ ├── logo--dark.svg │ ├── logo-dropbox.png │ ├── logo-emblem--dark.svg │ ├── logo-emblem.svg │ ├── logo-github.png │ ├── logo-lyft.png │ ├── logo-medium.png │ ├── logo-slack.png │ ├── logo-squarespace.png │ ├── logo.svg │ ├── product-1.png │ ├── product-2.png │ ├── product-3.png │ ├── product-4.png │ ├── product-5.png │ └── thumbnail.png └── favicon.ico ├── src ├── app │ ├── auth │ │ ├── reset-password │ │ │ └── page.tsx │ │ ├── sign-in │ │ │ └── page.tsx │ │ └── sign-up │ │ │ └── page.tsx │ ├── dashboard │ │ ├── account │ │ │ └── page.tsx │ │ ├── customers │ │ │ └── page.tsx │ │ ├── integrations │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── settings │ │ │ └── page.tsx │ ├── errors │ │ └── not-found │ │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── components │ ├── auth │ │ ├── auth-guard.tsx │ │ ├── guest-guard.tsx │ │ ├── layout.tsx │ │ ├── reset-password-form.tsx │ │ ├── sign-in-form.tsx │ │ └── sign-up-form.tsx │ ├── core │ │ ├── chart.tsx │ │ ├── localization-provider.tsx │ │ ├── logo.tsx │ │ ├── no-ssr.tsx │ │ └── theme-provider │ │ │ ├── emotion-cache.tsx │ │ │ └── theme-provider.tsx │ └── dashboard │ │ ├── account │ │ ├── account-details-form.tsx │ │ └── account-info.tsx │ │ ├── customer │ │ ├── customers-filters.tsx │ │ └── customers-table.tsx │ │ ├── integrations │ │ ├── integrations-card.tsx │ │ └── integrations-filters.tsx │ │ ├── layout │ │ ├── config.ts │ │ ├── main-nav.tsx │ │ ├── mobile-nav.tsx │ │ ├── nav-icons.tsx │ │ ├── side-nav.tsx │ │ └── user-popover.tsx │ │ ├── overview │ │ ├── budget.tsx │ │ ├── latest-orders.tsx │ │ ├── latest-products.tsx │ │ ├── sales.tsx │ │ ├── tasks-progress.tsx │ │ ├── total-customers.tsx │ │ ├── total-profit.tsx │ │ └── traffic.tsx │ │ └── settings │ │ ├── notifications.tsx │ │ └── update-password-form.tsx ├── config.ts ├── contexts │ └── user-context.tsx ├── hooks │ ├── use-popover.ts │ ├── use-selection.ts │ └── use-user.ts ├── lib │ ├── auth │ │ └── client.ts │ ├── default-logger.ts │ ├── get-site-url.ts │ ├── is-nav-item-active.ts │ └── logger.ts ├── paths.ts ├── styles │ ├── global.css │ └── theme │ │ ├── color-schemes.ts │ │ ├── colors.ts │ │ ├── components │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── card-content.tsx │ │ ├── card-header.tsx │ │ ├── card.tsx │ │ ├── components.tsx │ │ ├── link.tsx │ │ ├── stack.tsx │ │ ├── tab.tsx │ │ ├── table-body.tsx │ │ ├── table-cell.tsx │ │ └── table-head.tsx │ │ ├── create-theme.ts │ │ ├── shadows.ts │ │ ├── theme.d.ts │ │ ├── types.d.ts │ │ └── typography.ts └── types │ ├── nav.d.ts │ └── user.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /public/assets/auth-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/auth-widgets.png -------------------------------------------------------------------------------- /public/assets/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-1.png -------------------------------------------------------------------------------- /public/assets/avatar-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-10.png -------------------------------------------------------------------------------- /public/assets/avatar-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-11.png -------------------------------------------------------------------------------- /public/assets/avatar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-2.png -------------------------------------------------------------------------------- /public/assets/avatar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-3.png -------------------------------------------------------------------------------- /public/assets/avatar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-4.png -------------------------------------------------------------------------------- /public/assets/avatar-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-5.png -------------------------------------------------------------------------------- /public/assets/avatar-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-6.png -------------------------------------------------------------------------------- /public/assets/avatar-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-7.png -------------------------------------------------------------------------------- /public/assets/avatar-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-8.png -------------------------------------------------------------------------------- /public/assets/avatar-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar-9.png -------------------------------------------------------------------------------- /public/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/avatar.png -------------------------------------------------------------------------------- /public/assets/devias-kit-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/devias-kit-pro.png -------------------------------------------------------------------------------- /public/assets/error-401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/error-401.png -------------------------------------------------------------------------------- /public/assets/error-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/error-404.png -------------------------------------------------------------------------------- /public/assets/error-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/error-500.png -------------------------------------------------------------------------------- /public/assets/logo--dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo--dark.svg -------------------------------------------------------------------------------- /public/assets/logo-dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-dropbox.png -------------------------------------------------------------------------------- /public/assets/logo-emblem--dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-emblem--dark.svg -------------------------------------------------------------------------------- /public/assets/logo-emblem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-emblem.svg -------------------------------------------------------------------------------- /public/assets/logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-github.png -------------------------------------------------------------------------------- /public/assets/logo-lyft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-lyft.png -------------------------------------------------------------------------------- /public/assets/logo-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-medium.png -------------------------------------------------------------------------------- /public/assets/logo-slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-slack.png -------------------------------------------------------------------------------- /public/assets/logo-squarespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo-squarespace.png -------------------------------------------------------------------------------- /public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/logo.svg -------------------------------------------------------------------------------- /public/assets/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/product-1.png -------------------------------------------------------------------------------- /public/assets/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/product-2.png -------------------------------------------------------------------------------- /public/assets/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/product-3.png -------------------------------------------------------------------------------- /public/assets/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/product-4.png -------------------------------------------------------------------------------- /public/assets/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/product-5.png -------------------------------------------------------------------------------- /public/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/assets/thumbnail.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/app/auth/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/auth/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/auth/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/auth/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/auth/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/auth/sign-up/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/account/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/customers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/customers/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/integrations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/integrations/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /src/app/errors/not-found/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/errors/not-found/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/auth/auth-guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/auth-guard.tsx -------------------------------------------------------------------------------- /src/components/auth/guest-guard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/guest-guard.tsx -------------------------------------------------------------------------------- /src/components/auth/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/layout.tsx -------------------------------------------------------------------------------- /src/components/auth/reset-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/reset-password-form.tsx -------------------------------------------------------------------------------- /src/components/auth/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/sign-in-form.tsx -------------------------------------------------------------------------------- /src/components/auth/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/auth/sign-up-form.tsx -------------------------------------------------------------------------------- /src/components/core/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/chart.tsx -------------------------------------------------------------------------------- /src/components/core/localization-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/localization-provider.tsx -------------------------------------------------------------------------------- /src/components/core/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/logo.tsx -------------------------------------------------------------------------------- /src/components/core/no-ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/no-ssr.tsx -------------------------------------------------------------------------------- /src/components/core/theme-provider/emotion-cache.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/theme-provider/emotion-cache.tsx -------------------------------------------------------------------------------- /src/components/core/theme-provider/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/core/theme-provider/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/dashboard/account/account-details-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/account/account-details-form.tsx -------------------------------------------------------------------------------- /src/components/dashboard/account/account-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/account/account-info.tsx -------------------------------------------------------------------------------- /src/components/dashboard/customer/customers-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/customer/customers-filters.tsx -------------------------------------------------------------------------------- /src/components/dashboard/customer/customers-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/customer/customers-table.tsx -------------------------------------------------------------------------------- /src/components/dashboard/integrations/integrations-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/integrations/integrations-card.tsx -------------------------------------------------------------------------------- /src/components/dashboard/integrations/integrations-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/integrations/integrations-filters.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/config.ts -------------------------------------------------------------------------------- /src/components/dashboard/layout/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/main-nav.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/mobile-nav.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/nav-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/nav-icons.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/side-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/side-nav.tsx -------------------------------------------------------------------------------- /src/components/dashboard/layout/user-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/layout/user-popover.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/budget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/budget.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/latest-orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/latest-orders.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/latest-products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/latest-products.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/sales.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/tasks-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/tasks-progress.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/total-customers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/total-customers.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/total-profit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/total-profit.tsx -------------------------------------------------------------------------------- /src/components/dashboard/overview/traffic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/overview/traffic.tsx -------------------------------------------------------------------------------- /src/components/dashboard/settings/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/settings/notifications.tsx -------------------------------------------------------------------------------- /src/components/dashboard/settings/update-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/components/dashboard/settings/update-password-form.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/contexts/user-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/contexts/user-context.tsx -------------------------------------------------------------------------------- /src/hooks/use-popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/hooks/use-popover.ts -------------------------------------------------------------------------------- /src/hooks/use-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/hooks/use-selection.ts -------------------------------------------------------------------------------- /src/hooks/use-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/hooks/use-user.ts -------------------------------------------------------------------------------- /src/lib/auth/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/lib/auth/client.ts -------------------------------------------------------------------------------- /src/lib/default-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/lib/default-logger.ts -------------------------------------------------------------------------------- /src/lib/get-site-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/lib/get-site-url.ts -------------------------------------------------------------------------------- /src/lib/is-nav-item-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/lib/is-nav-item-active.ts -------------------------------------------------------------------------------- /src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/lib/logger.ts -------------------------------------------------------------------------------- /src/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/paths.ts -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/theme/color-schemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/color-schemes.ts -------------------------------------------------------------------------------- /src/styles/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/colors.ts -------------------------------------------------------------------------------- /src/styles/theme/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/avatar.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/button.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/card-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/card-content.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/card-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/card-header.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/card.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/components.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/link.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/stack.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/tab.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/table-body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/table-body.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/table-cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/table-cell.tsx -------------------------------------------------------------------------------- /src/styles/theme/components/table-head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/components/table-head.tsx -------------------------------------------------------------------------------- /src/styles/theme/create-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/create-theme.ts -------------------------------------------------------------------------------- /src/styles/theme/shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/shadows.ts -------------------------------------------------------------------------------- /src/styles/theme/theme.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/theme.d.ts -------------------------------------------------------------------------------- /src/styles/theme/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/types.d.ts -------------------------------------------------------------------------------- /src/styles/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/styles/theme/typography.ts -------------------------------------------------------------------------------- /src/types/nav.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/types/nav.d.ts -------------------------------------------------------------------------------- /src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/src/types/user.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devias-io/material-kit-react/HEAD/tsconfig.json --------------------------------------------------------------------------------