├── .eslintrc.cjs ├── .github └── FUNDING.yml ├── .gitignore ├── .npmrc ├── README.md ├── image └── README │ ├── 1720738595211.png │ ├── dashboardDark1.png │ ├── dashboardDark2.png │ ├── dashboardLight1.png │ ├── dashboardLight2.png │ └── login.png ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── fonts │ ├── Poppins-Bold.ttf │ ├── Poppins-Light.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Vazir-Bold.ttf │ └── Vazir-Light.ttf └── logo.svg ├── src ├── App.tsx ├── assets │ ├── icons │ │ ├── fill │ │ │ ├── AmountRightTop.tsx │ │ │ ├── ArrowDown.tsx │ │ │ ├── ArrowDropDown.tsx │ │ │ ├── ArrowDropUp.tsx │ │ │ ├── ArrowLeft.tsx │ │ │ ├── ArrowUp.tsx │ │ │ ├── ArrowVirgule.tsx │ │ │ ├── Chart.tsx │ │ │ ├── ChevronDown.tsx │ │ │ ├── Close.tsx │ │ │ ├── Comment.tsx │ │ │ ├── Credit.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── ExpandRight.tsx │ │ │ ├── Eye.tsx │ │ │ ├── EyeSlash.tsx │ │ │ ├── Mastercard.tsx │ │ │ ├── Menu.tsx │ │ │ ├── Message.tsx │ │ │ ├── Moon.tsx │ │ │ ├── NotificationPin.tsx │ │ │ ├── Plus.tsx │ │ │ ├── Search.tsx │ │ │ ├── Settings.tsx │ │ │ ├── Signin.tsx │ │ │ ├── Signout.tsx │ │ │ ├── Sun.tsx │ │ │ ├── User.tsx │ │ │ ├── VerticalDots.tsx │ │ │ ├── VisaCard.tsx │ │ │ └── Wallet.tsx │ │ ├── logo │ │ │ ├── AppleTv.tsx │ │ │ ├── Dribble.tsx │ │ │ ├── Esty.tsx │ │ │ ├── Logo.tsx │ │ │ └── Upwork.tsx │ │ └── outline │ │ │ ├── ColumnUp.tsx │ │ │ └── Money.tsx │ └── pictures │ │ ├── flag │ │ ├── europeFlag.png │ │ ├── iranFlag.jpg │ │ ├── ukFlag.jpg │ │ └── usaFlag.jpg │ │ ├── login │ │ └── wallpapersden.com_trees-mountains-fog_6000x4000.jpg │ │ ├── quickTransferAvatar │ │ ├── avatar1.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ └── avatar4.png │ │ └── users │ │ └── Avatar3.svg ├── components │ ├── Modules │ │ ├── AuthenticationCard │ │ │ └── AuthenticationCard.tsx │ │ ├── Charts │ │ │ ├── StackedAreaChart.tsx │ │ │ └── TinyBarChart.tsx │ │ ├── Dropdown │ │ │ ├── Dropdown.tsx │ │ │ └── DropdownContents │ │ │ │ └── ChangeLanguage.tsx │ │ ├── Popover │ │ │ ├── Popover.tsx │ │ │ └── PopoverContents │ │ │ │ ├── SearchPopoverContent.tsx │ │ │ │ └── UserPopoverContent.tsx │ │ ├── Sidebar │ │ │ └── Sidebar.tsx │ │ ├── Table │ │ │ └── MainTable.tsx │ │ ├── ThemeSwitch │ │ │ └── ThemeSwitch.tsx │ │ ├── Tooltip │ │ │ └── MainTooltip.tsx │ │ ├── Topbar │ │ │ └── Topbar.tsx │ │ └── UserCard │ │ │ └── MainUserCard.tsx │ ├── Templates │ │ ├── Home │ │ │ ├── AreaChartBox.tsx │ │ │ ├── BarChartBox.tsx │ │ │ ├── CreditCardBox.tsx │ │ │ ├── CurrenciesMarket.tsx │ │ │ ├── CurrenciesMarketDetailBox.tsx │ │ │ ├── CurrenciesMarketTable.tsx │ │ │ ├── IncomeBox.tsx │ │ │ ├── QuickTransfer.tsx │ │ │ ├── TotalBalance.tsx │ │ │ └── YourCards.tsx │ │ └── Login │ │ │ └── LoginForm.tsx │ └── ui │ │ ├── BackgroundBeam.tsx │ │ ├── FlipWords.tsx │ │ └── HoverBorderGrdaient.tsx ├── configs │ └── beforeLoad.ts ├── constants │ ├── languages.tsx │ └── sideBarItem.tsx ├── hooks │ ├── api │ │ └── useAuthApi.ts │ └── useRevokeUser.ts ├── i18n.ts ├── index.css ├── interfaces │ ├── creditCards.interface.ts │ ├── currencyMarket.interface.ts │ ├── currenyMarkerts.interface.ts │ ├── dropdown.interface.ts │ ├── income.interface.ts │ ├── loginForm.interface.ts │ ├── mainTable.interface.ts │ ├── popover.interface.ts │ ├── sidebar.interface.ts │ └── sidebarItem.interface.ts ├── layouts │ ├── AuthLayout.tsx │ └── DashboardLayout.tsx ├── locales │ ├── en │ │ └── translation.json │ └── fa │ │ └── translation.json ├── main.tsx ├── mock │ ├── creditCardsInfo.ts │ ├── currencieMarketInfo.ts │ ├── incomeInfo.ts │ └── quickTransferInf.ts ├── pages │ ├── comments │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── login │ │ └── index.tsx │ ├── messages │ │ └── index.tsx │ ├── payments │ │ └── index.tsx │ ├── statistics │ │ └── index.tsx │ └── wallet │ │ └── index.tsx ├── routeTree.gen.ts ├── routes │ ├── __root.tsx │ ├── _auth.comments.lazy.tsx │ ├── _auth.index.lazy.tsx │ ├── _auth.messages.lazy.tsx │ ├── _auth.payments.lazy.tsx │ ├── _auth.statistics.lazy.tsx │ ├── _auth.tsx │ ├── _auth.wallet.lazy.tsx │ ├── _unAuth.login.lazy.tsx │ └── _unAuth.tsx ├── services │ ├── api │ │ └── authApi.ts │ └── httpService.ts ├── stores │ └── useSidebar.ts ├── utils │ ├── cn.ts │ ├── convertTimestampsToDate.ts │ ├── formatPrice.ts │ ├── getDirectionByLanguage.ts │ ├── isAuthenticated.ts │ └── maskCardNumber.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=*@nextui-org/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /image/README/1720738595211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/1720738595211.png -------------------------------------------------------------------------------- /image/README/dashboardDark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/dashboardDark1.png -------------------------------------------------------------------------------- /image/README/dashboardDark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/dashboardDark2.png -------------------------------------------------------------------------------- /image/README/dashboardLight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/dashboardLight1.png -------------------------------------------------------------------------------- /image/README/dashboardLight2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/dashboardLight2.png -------------------------------------------------------------------------------- /image/README/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/image/README/login.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /public/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /public/fonts/Vazir-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Vazir-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Vazir-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/fonts/Vazir-Light.ttf -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/public/logo.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/AmountRightTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/AmountRightTop.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowDown.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowDropDown.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowDropUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowDropUp.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowLeft.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowUp.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ArrowVirgule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ArrowVirgule.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Chart.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ChevronDown.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Close.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Comment.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Credit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Credit.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Dashboard.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/ExpandRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/ExpandRight.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Eye.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/EyeSlash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/EyeSlash.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Mastercard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Mastercard.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Menu.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Message.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Moon.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/NotificationPin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/NotificationPin.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Plus.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Search.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Settings.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Signin.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Signout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Signout.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Sun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Sun.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/User.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/VerticalDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/VerticalDots.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/VisaCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/VisaCard.tsx -------------------------------------------------------------------------------- /src/assets/icons/fill/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/fill/Wallet.tsx -------------------------------------------------------------------------------- /src/assets/icons/logo/AppleTv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/logo/AppleTv.tsx -------------------------------------------------------------------------------- /src/assets/icons/logo/Dribble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/logo/Dribble.tsx -------------------------------------------------------------------------------- /src/assets/icons/logo/Esty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/logo/Esty.tsx -------------------------------------------------------------------------------- /src/assets/icons/logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/logo/Logo.tsx -------------------------------------------------------------------------------- /src/assets/icons/logo/Upwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/logo/Upwork.tsx -------------------------------------------------------------------------------- /src/assets/icons/outline/ColumnUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/outline/ColumnUp.tsx -------------------------------------------------------------------------------- /src/assets/icons/outline/Money.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/icons/outline/Money.tsx -------------------------------------------------------------------------------- /src/assets/pictures/flag/europeFlag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/flag/europeFlag.png -------------------------------------------------------------------------------- /src/assets/pictures/flag/iranFlag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/flag/iranFlag.jpg -------------------------------------------------------------------------------- /src/assets/pictures/flag/ukFlag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/flag/ukFlag.jpg -------------------------------------------------------------------------------- /src/assets/pictures/flag/usaFlag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/flag/usaFlag.jpg -------------------------------------------------------------------------------- /src/assets/pictures/login/wallpapersden.com_trees-mountains-fog_6000x4000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/login/wallpapersden.com_trees-mountains-fog_6000x4000.jpg -------------------------------------------------------------------------------- /src/assets/pictures/quickTransferAvatar/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/quickTransferAvatar/avatar1.png -------------------------------------------------------------------------------- /src/assets/pictures/quickTransferAvatar/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/quickTransferAvatar/avatar2.png -------------------------------------------------------------------------------- /src/assets/pictures/quickTransferAvatar/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/quickTransferAvatar/avatar3.png -------------------------------------------------------------------------------- /src/assets/pictures/quickTransferAvatar/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/quickTransferAvatar/avatar4.png -------------------------------------------------------------------------------- /src/assets/pictures/users/Avatar3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/assets/pictures/users/Avatar3.svg -------------------------------------------------------------------------------- /src/components/Modules/AuthenticationCard/AuthenticationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/AuthenticationCard/AuthenticationCard.tsx -------------------------------------------------------------------------------- /src/components/Modules/Charts/StackedAreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Charts/StackedAreaChart.tsx -------------------------------------------------------------------------------- /src/components/Modules/Charts/TinyBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Charts/TinyBarChart.tsx -------------------------------------------------------------------------------- /src/components/Modules/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/Modules/Dropdown/DropdownContents/ChangeLanguage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Dropdown/DropdownContents/ChangeLanguage.tsx -------------------------------------------------------------------------------- /src/components/Modules/Popover/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Popover/Popover.tsx -------------------------------------------------------------------------------- /src/components/Modules/Popover/PopoverContents/SearchPopoverContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Popover/PopoverContents/SearchPopoverContent.tsx -------------------------------------------------------------------------------- /src/components/Modules/Popover/PopoverContents/UserPopoverContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Popover/PopoverContents/UserPopoverContent.tsx -------------------------------------------------------------------------------- /src/components/Modules/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Modules/Table/MainTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Table/MainTable.tsx -------------------------------------------------------------------------------- /src/components/Modules/ThemeSwitch/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/ThemeSwitch/ThemeSwitch.tsx -------------------------------------------------------------------------------- /src/components/Modules/Tooltip/MainTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Tooltip/MainTooltip.tsx -------------------------------------------------------------------------------- /src/components/Modules/Topbar/Topbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/Topbar/Topbar.tsx -------------------------------------------------------------------------------- /src/components/Modules/UserCard/MainUserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Modules/UserCard/MainUserCard.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/AreaChartBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/AreaChartBox.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/BarChartBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/BarChartBox.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/CreditCardBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/CreditCardBox.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/CurrenciesMarket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/CurrenciesMarket.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/CurrenciesMarketDetailBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/CurrenciesMarketDetailBox.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/CurrenciesMarketTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/CurrenciesMarketTable.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/IncomeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/IncomeBox.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/QuickTransfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/QuickTransfer.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/TotalBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/TotalBalance.tsx -------------------------------------------------------------------------------- /src/components/Templates/Home/YourCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Home/YourCards.tsx -------------------------------------------------------------------------------- /src/components/Templates/Login/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/Templates/Login/LoginForm.tsx -------------------------------------------------------------------------------- /src/components/ui/BackgroundBeam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/ui/BackgroundBeam.tsx -------------------------------------------------------------------------------- /src/components/ui/FlipWords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/ui/FlipWords.tsx -------------------------------------------------------------------------------- /src/components/ui/HoverBorderGrdaient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/components/ui/HoverBorderGrdaient.tsx -------------------------------------------------------------------------------- /src/configs/beforeLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/configs/beforeLoad.ts -------------------------------------------------------------------------------- /src/constants/languages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/constants/languages.tsx -------------------------------------------------------------------------------- /src/constants/sideBarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/constants/sideBarItem.tsx -------------------------------------------------------------------------------- /src/hooks/api/useAuthApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/hooks/api/useAuthApi.ts -------------------------------------------------------------------------------- /src/hooks/useRevokeUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/hooks/useRevokeUser.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/index.css -------------------------------------------------------------------------------- /src/interfaces/creditCards.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/creditCards.interface.ts -------------------------------------------------------------------------------- /src/interfaces/currencyMarket.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/currencyMarket.interface.ts -------------------------------------------------------------------------------- /src/interfaces/currenyMarkerts.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/currenyMarkerts.interface.ts -------------------------------------------------------------------------------- /src/interfaces/dropdown.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/dropdown.interface.ts -------------------------------------------------------------------------------- /src/interfaces/income.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/income.interface.ts -------------------------------------------------------------------------------- /src/interfaces/loginForm.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/loginForm.interface.ts -------------------------------------------------------------------------------- /src/interfaces/mainTable.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/mainTable.interface.ts -------------------------------------------------------------------------------- /src/interfaces/popover.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/popover.interface.ts -------------------------------------------------------------------------------- /src/interfaces/sidebar.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/sidebar.interface.ts -------------------------------------------------------------------------------- /src/interfaces/sidebarItem.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/interfaces/sidebarItem.interface.ts -------------------------------------------------------------------------------- /src/layouts/AuthLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/layouts/AuthLayout.tsx -------------------------------------------------------------------------------- /src/layouts/DashboardLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/layouts/DashboardLayout.tsx -------------------------------------------------------------------------------- /src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/locales/en/translation.json -------------------------------------------------------------------------------- /src/locales/fa/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/locales/fa/translation.json -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/mock/creditCardsInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/mock/creditCardsInfo.ts -------------------------------------------------------------------------------- /src/mock/currencieMarketInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/mock/currencieMarketInfo.ts -------------------------------------------------------------------------------- /src/mock/incomeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/mock/incomeInfo.ts -------------------------------------------------------------------------------- /src/mock/quickTransferInf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/mock/quickTransferInf.ts -------------------------------------------------------------------------------- /src/pages/comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/comments/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/messages/index.tsx -------------------------------------------------------------------------------- /src/pages/payments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/payments/index.tsx -------------------------------------------------------------------------------- /src/pages/statistics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/statistics/index.tsx -------------------------------------------------------------------------------- /src/pages/wallet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/pages/wallet/index.tsx -------------------------------------------------------------------------------- /src/routeTree.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routeTree.gen.ts -------------------------------------------------------------------------------- /src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/__root.tsx -------------------------------------------------------------------------------- /src/routes/_auth.comments.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.comments.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_auth.index.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.index.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_auth.messages.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.messages.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_auth.payments.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.payments.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_auth.statistics.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.statistics.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.tsx -------------------------------------------------------------------------------- /src/routes/_auth.wallet.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_auth.wallet.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_unAuth.login.lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_unAuth.login.lazy.tsx -------------------------------------------------------------------------------- /src/routes/_unAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/routes/_unAuth.tsx -------------------------------------------------------------------------------- /src/services/api/authApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/services/api/authApi.ts -------------------------------------------------------------------------------- /src/services/httpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/services/httpService.ts -------------------------------------------------------------------------------- /src/stores/useSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/stores/useSidebar.ts -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /src/utils/convertTimestampsToDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/convertTimestampsToDate.ts -------------------------------------------------------------------------------- /src/utils/formatPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/formatPrice.ts -------------------------------------------------------------------------------- /src/utils/getDirectionByLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/getDirectionByLanguage.ts -------------------------------------------------------------------------------- /src/utils/isAuthenticated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/isAuthenticated.ts -------------------------------------------------------------------------------- /src/utils/maskCardNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/src/utils/maskCardNumber.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryankholqi/nextUI-Dashboard/HEAD/vite.config.ts --------------------------------------------------------------------------------