├── .gitignore ├── README.md ├── app ├── (auth) │ ├── coming-soon │ │ └── page.jsx │ ├── forgot-password │ │ └── page.jsx │ ├── forgot-password2 │ │ └── page.jsx │ ├── forgot-password3 │ │ └── page.jsx │ ├── layout.js │ ├── lock-screen │ │ └── page.jsx │ ├── lock-screen2 │ │ └── page.jsx │ ├── lock-screen3 │ │ └── page.jsx │ ├── login2 │ │ └── page.jsx │ ├── login3 │ │ └── page.jsx │ ├── page.jsx │ ├── register │ │ └── page.jsx │ ├── register2 │ │ └── page.jsx │ ├── register3 │ │ └── page.jsx │ └── under-construction │ │ └── page.jsx ├── (dashboard) │ ├── (app) │ │ ├── calender │ │ │ └── page.jsx │ │ ├── chat │ │ │ └── page.jsx │ │ ├── email │ │ │ └── page.jsx │ │ ├── kanban │ │ │ └── page.jsx │ │ ├── projects │ │ │ └── page.jsx │ │ └── todo │ │ │ └── page.jsx │ ├── (chart) │ │ ├── appex-chart │ │ │ └── page.jsx │ │ ├── chartjs │ │ │ └── page.jsx │ │ └── recharts │ │ │ └── page.jsx │ ├── (components) │ │ ├── alert │ │ │ └── page.jsx │ │ ├── badges │ │ │ └── page.jsx │ │ ├── button │ │ │ └── page.jsx │ │ ├── card │ │ │ └── page.jsx │ │ ├── carousel │ │ │ └── page.jsx │ │ ├── colors │ │ │ └── page.jsx │ │ ├── dropdown │ │ │ └── page.jsx │ │ ├── modal │ │ │ └── page.jsx │ │ ├── paginations │ │ │ └── page.jsx │ │ ├── placeholder │ │ │ └── page.jsx │ │ ├── progress-bar │ │ │ └── page.jsx │ │ ├── tab-accordion │ │ │ └── page.jsx │ │ ├── tooltip-popover │ │ │ └── page.jsx │ │ ├── typography │ │ │ └── page.jsx │ │ └── video │ │ │ └── page.jsx │ ├── (forms) │ │ ├── checkbox │ │ │ └── page.jsx │ │ ├── date-time-picker │ │ │ └── page.jsx │ │ ├── file-input │ │ │ └── page.jsx │ │ ├── form-repeater │ │ │ └── page.jsx │ │ ├── form-validation │ │ │ └── page.jsx │ │ ├── form-wizard │ │ │ └── page.jsx │ │ ├── input-group │ │ │ └── page.jsx │ │ ├── input-layout │ │ │ └── page.jsx │ │ ├── input-mask │ │ │ └── page.jsx │ │ ├── input │ │ │ └── page.jsx │ │ ├── radio-button │ │ │ └── page.jsx │ │ ├── select │ │ │ └── page.jsx │ │ ├── switch │ │ │ └── page.jsx │ │ └── textarea │ │ │ └── page.jsx │ ├── (table) │ │ ├── react-table │ │ │ └── page.jsx │ │ └── table-basic │ │ │ └── page.jsx │ ├── (utility) │ │ ├── blank-page │ │ │ └── page.jsx │ │ ├── blog │ │ │ ├── [...id] │ │ │ │ └── page.jsx │ │ │ └── page.jsx │ │ ├── faq │ │ │ └── page.jsx │ │ ├── invoice-add │ │ │ └── page.jsx │ │ ├── invoice-edit │ │ │ └── page.jsx │ │ ├── invoice-preview │ │ │ └── page.jsx │ │ ├── invoice │ │ │ └── page.jsx │ │ ├── notifications │ │ │ └── page.jsx │ │ ├── pricing │ │ │ └── page.jsx │ │ ├── profile │ │ │ └── page.jsx │ │ └── settings │ │ │ └── page.jsx │ ├── (widget) │ │ ├── basic │ │ │ └── page.jsx │ │ └── statistic │ │ │ └── page.jsx │ ├── analytics │ │ └── page.jsx │ ├── banking │ │ └── page.jsx │ ├── changelog │ │ └── page.jsx │ ├── crm │ │ └── page.jsx │ ├── ecommerce │ │ └── page.jsx │ ├── icons │ │ └── page.jsx │ ├── layout.js │ ├── map │ │ └── page.jsx │ └── project │ │ └── page.jsx ├── [...not-found] │ └── page.jsx ├── favicon.ico ├── head.js ├── layout.js ├── loading.js ├── not-found.js └── scss │ ├── app.scss │ ├── components │ ├── _alert.scss │ ├── _auth.scss │ ├── _badge.scss │ ├── _breadcrumbs.scss │ ├── _button.scss │ ├── _card.scss │ ├── _form.scss │ ├── _input-group.scss │ ├── _map.scss │ ├── _pagination.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _react-select.scss │ ├── _swiper.scss │ ├── _table.scss │ ├── _tippy.scss │ └── _typography.scss │ ├── layout │ ├── _footer.scss │ ├── _header.scss │ ├── _menu.scss │ ├── _settings.scss │ └── _sidebar.scss │ └── utility │ ├── _calander.scss │ ├── _css-animation.scss │ ├── _full-calender.scss │ ├── _loading.scss │ └── _mix.scss ├── components ├── Loading.jsx ├── partials │ ├── HomeBredCurbs.jsx │ ├── SelectMonth.jsx │ ├── app │ │ ├── calender │ │ │ ├── EditEventModal.jsx │ │ │ ├── EventModal.jsx │ │ │ └── store.js │ │ ├── chat │ │ │ ├── Blank.jsx │ │ │ ├── Chat.jsx │ │ │ ├── Contacts.jsx │ │ │ ├── Info.jsx │ │ │ ├── MyProfile.jsx │ │ │ └── store.js │ │ ├── email │ │ │ ├── BottomFilter.jsx │ │ │ ├── ComposeEmail.jsx │ │ │ ├── EmailDetails.jsx │ │ │ ├── EmailHeader.jsx │ │ │ ├── Emails.jsx │ │ │ ├── Topfilter.jsx │ │ │ └── store.js │ │ ├── kanban │ │ │ ├── AddColumn.jsx │ │ │ ├── AddTaskModal.jsx │ │ │ ├── EditTask.jsx │ │ │ ├── Task.jsx │ │ │ └── store.js │ │ ├── projects │ │ │ ├── AddProject.jsx │ │ │ ├── EditProject.jsx │ │ │ ├── ProjectGrid.jsx │ │ │ ├── ProjectList.jsx │ │ │ ├── project-details.jsx │ │ │ └── store.js │ │ └── todo │ │ │ ├── AddTodo.jsx │ │ │ ├── BottomFilter.jsx │ │ │ ├── EditTodo.jsx │ │ │ ├── TodoHeader.jsx │ │ │ ├── Todos.jsx │ │ │ ├── Topfilter.jsx │ │ │ └── store.js │ ├── auth │ │ ├── forgot-pass.jsx │ │ ├── lock.jsx │ │ ├── login-form.jsx │ │ ├── reg-from.jsx │ │ ├── social.jsx │ │ └── store.js │ ├── blog │ │ └── Sidebar.jsx │ ├── chart │ │ ├── appex-chart │ │ │ ├── AreaSpaline.jsx │ │ │ ├── BasicArea.jsx │ │ │ ├── Basicbar.jsx │ │ │ ├── Bubble.jsx │ │ │ ├── Candlestick.jsx │ │ │ ├── Donut.jsx │ │ │ ├── HorizontalBar.jsx │ │ │ ├── Mixed.jsx │ │ │ ├── Pie.jsx │ │ │ ├── Radar.jsx │ │ │ ├── Radialbars.jsx │ │ │ ├── Scatter.jsx │ │ │ ├── Stacked.jsx │ │ │ └── Stepline.jsx │ │ ├── chartjs │ │ │ ├── Bar.jsx │ │ │ ├── BarStacked.jsx │ │ │ ├── HorizontalBar.jsx │ │ │ ├── LineChart.jsx │ │ │ ├── PollerAreaChart.jsx │ │ │ ├── RadarChart.jsx │ │ │ └── index.jsx │ │ └── recharts │ │ │ ├── ReAreaChart.jsx │ │ │ ├── ReBarChart.jsx │ │ │ ├── ReLineChart.jsx │ │ │ ├── RePieChart.jsx │ │ │ ├── ReRadarChart.jsx │ │ │ └── ScatterChart.jsx │ ├── footer │ │ ├── MobileFooter.jsx │ │ └── index.jsx │ ├── froms │ │ ├── DropZone.jsx │ │ ├── HorizentalWizard.jsx │ │ ├── Options.jsx │ │ ├── ReactSelect.jsx │ │ ├── Repeater.jsx │ │ ├── Simple.jsx │ │ ├── SimpleTooltip.jsx │ │ ├── Vertical.jsx │ │ ├── multiple-rules.jsx │ │ └── validation-types.jsx │ ├── header │ │ ├── Tools │ │ │ ├── HorizentalMenu.jsx │ │ │ ├── Language.jsx │ │ │ ├── Logo.jsx │ │ │ ├── Message.jsx │ │ │ ├── MobileLogo.jsx │ │ │ ├── MonoChrome.jsx │ │ │ ├── Notification.jsx │ │ │ ├── Profile.jsx │ │ │ ├── SearchModal.jsx │ │ │ └── SwitchDark.jsx │ │ └── index.jsx │ ├── map │ │ ├── GeoJSON.jsx │ │ ├── VectoreMap.jsx │ │ ├── basic-map.jsx │ │ ├── ecomp.json │ │ ├── marker-map.jsx │ │ └── seg.json │ ├── settings │ │ ├── Tools │ │ │ ├── ContentWidth.jsx │ │ │ ├── FooterType.jsx │ │ │ ├── MenuClose.jsx │ │ │ ├── MenuHidden.jsx │ │ │ ├── Menulayout.jsx │ │ │ ├── NavbarType.jsx │ │ │ ├── Rtl.jsx │ │ │ ├── Semidark.jsx │ │ │ ├── Skin.jsx │ │ │ └── Theme.jsx │ │ └── index.jsx │ ├── sidebar │ │ ├── Logo.jsx │ │ ├── MobileMenu.jsx │ │ ├── Multi.jsx │ │ ├── Navmenu.jsx │ │ ├── Submenu.jsx │ │ └── index.jsx │ ├── step.jsx │ ├── table │ │ ├── ExampleOne.jsx │ │ ├── ExampleTwo.jsx │ │ ├── GlobalFilter.jsx │ │ ├── TotalTable.jsx │ │ ├── company-table.jsx │ │ ├── recentOrder-table.jsx │ │ ├── team-table.jsx │ │ └── transactions.jsx │ └── widget │ │ ├── CalendarView.jsx │ │ ├── CardSlider.jsx │ │ ├── activity.jsx │ │ ├── block │ │ ├── image-block-1.jsx │ │ └── image-block-2.jsx │ │ ├── chart │ │ ├── Calculation.jsx │ │ ├── account-payable.jsx │ │ ├── account-receivable.jsx │ │ ├── donut-chart.jsx │ │ ├── dount-chart2.jsx │ │ ├── earning-chart.jsx │ │ ├── group-chart-1.jsx │ │ ├── group-chart-2.jsx │ │ ├── group-chart-3.jsx │ │ ├── group-chart-4.jsx │ │ ├── group-chart5.jsx │ │ ├── history-chart.jsx │ │ ├── order-chart.jsx │ │ ├── profit-chart.jsx │ │ ├── radar-chart.jsx │ │ ├── radials.jsx │ │ ├── revenue-bar-chart.jsx │ │ ├── stack-bar.jsx │ │ └── visitor-radar.jsx │ │ ├── customer.jsx │ │ ├── message-list.jsx │ │ ├── most-sales.jsx │ │ ├── most-sales2.jsx │ │ ├── products.jsx │ │ ├── recent-activity.jsx │ │ └── task-list.jsx ├── skeleton │ ├── Grid.jsx │ ├── ListLoading.jsx │ └── Table.jsx └── ui │ ├── Accordion.jsx │ ├── Alert.jsx │ ├── Badge.jsx │ ├── Breadcrumbs.jsx │ ├── Button.jsx │ ├── Card.jsx │ ├── Carousel.jsx │ ├── Checkbox.jsx │ ├── Dropdown.jsx │ ├── Fileinput.jsx │ ├── FormGroup.jsx │ ├── Icon.jsx │ ├── Image.jsx │ ├── InputGroup.jsx │ ├── Modal.jsx │ ├── Pagination.jsx │ ├── ProgressBar │ ├── Bar.jsx │ └── index.jsx │ ├── Radio.jsx │ ├── Select.jsx │ ├── Split-dropdown.jsx │ ├── Switch.jsx │ ├── Textarea.jsx │ ├── Textinput.jsx │ ├── Tooltip.jsx │ └── VideoPlayer.jsx ├── configs └── themeConfig.js ├── constant ├── appex-chart.js ├── data.js ├── table-data.js └── world-map.json ├── hooks ├── useContentWidth.js ├── useDarkMode.js ├── useFooterType.js ├── useMenuHidden.js ├── useMenulayout.js ├── useMobileMenu.js ├── useMonoChrome.js ├── useNavbarType.js ├── useRtl.js ├── useSemiDark.js ├── useSidebar.js ├── useSkin.js └── useWidth.js ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── assets │ └── images │ │ ├── all-img │ │ ├── 404-2.svg │ │ ├── 404.svg │ │ ├── big-shap1.png │ │ ├── big-shap2.png │ │ ├── big-shap3.png │ │ ├── big-shap4.png │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── card-1.png │ │ ├── card-2.png │ │ ├── card-3.png │ │ ├── card-4.png │ │ ├── card-5.png │ │ ├── card-6.png │ │ ├── card-7.png │ │ ├── ck.svg │ │ ├── cus-1.png │ │ ├── cus-2.png │ │ ├── cus-3.png │ │ ├── customer_1.png │ │ ├── image-1.png │ │ ├── image-2.png │ │ ├── image-3.png │ │ ├── inbox-1.png │ │ ├── inbox-2.png │ │ ├── inbox-3.png │ │ ├── login-bg.png │ │ ├── main-user.png │ │ ├── p-1.png │ │ ├── p-2.png │ │ ├── p-3.png │ │ ├── p-4.png │ │ ├── p-5.png │ │ ├── p-6.png │ │ ├── page-bg.png │ │ ├── post-1.png │ │ ├── post-2.png │ │ ├── shade-1.png │ │ ├── shade-2.png │ │ ├── shade-3.png │ │ ├── shade-4.png │ │ ├── t1.png │ │ ├── thumb-1.png │ │ ├── thumb-2.png │ │ ├── thumb-3.png │ │ ├── thumb-4.png │ │ ├── thumb-5.png │ │ ├── thumb-6.png │ │ ├── user-big.png │ │ ├── user.png │ │ ├── user2.png │ │ ├── user3.png │ │ ├── user4.png │ │ ├── video-poster.png │ │ ├── visa-card-bg.png │ │ ├── widget-bg-1.png │ │ ├── widget-bg-2.png │ │ ├── widget-bg-3-1.png │ │ ├── widget-bg-3.png │ │ ├── widget-bg-4.png │ │ ├── widget-bg-5.png │ │ ├── widget-bg-6.png │ │ ├── widget-bg-7.png │ │ └── widget-bg-8.png │ │ ├── auth │ │ ├── ils1.svg │ │ └── ilst2.png │ │ ├── avatar │ │ ├── av-1.svg │ │ ├── av-2.svg │ │ ├── av-3.svg │ │ ├── av-4.svg │ │ ├── av-5.svg │ │ └── av-6.svg │ │ ├── chat │ │ ├── chat-1.png │ │ ├── chat-2.png │ │ ├── chat-3.png │ │ ├── chat-4.png │ │ ├── chat-5.png │ │ ├── chat-6.png │ │ ├── sd1.png │ │ ├── sd2.png │ │ ├── sd3.png │ │ ├── sd4.png │ │ ├── sd5.png │ │ └── sd6.png │ │ ├── demo │ │ └── demo.png │ │ ├── flags │ │ ├── bd-.svg.png │ │ ├── en.svg │ │ ├── gn.png │ │ └── usa.png │ │ ├── icon │ │ ├── ck-white.svg │ │ ├── crown.svg │ │ ├── fb.svg │ │ ├── file-1.svg │ │ ├── gp.svg │ │ ├── home.svg │ │ ├── in.svg │ │ ├── pdf-1.svg │ │ ├── pdf-2.svg │ │ ├── scr-1.svg │ │ ├── success.svg │ │ ├── tw.svg │ │ ├── white-s.svg │ │ └── zip-1.svg │ │ ├── logo │ │ ├── logo-c-white.svg │ │ ├── logo-c.svg │ │ ├── logo-white.svg │ │ ├── logo.svg │ │ └── visa.svg │ │ ├── post │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── t-1.png │ │ ├── t-2.png │ │ └── t-3.png │ │ ├── svg │ │ ├── blank.svg │ │ ├── dc.svg │ │ ├── fb.svg │ │ ├── gift.svg │ │ ├── img-1.svg │ │ ├── img-2.svg │ │ ├── ins.svg │ │ ├── line.svg │ │ ├── ln.svg │ │ ├── loader.svg │ │ ├── mobile-menu-bg.svg │ │ ├── path.svg │ │ ├── q.svg │ │ ├── rabit.svg │ │ ├── sk.svg │ │ ├── tw.svg │ │ ├── upload.svg │ │ ├── widgetvector.svg │ │ └── widgetvector2.svg │ │ └── users │ │ ├── user-1.jpg │ │ ├── user-2.jpg │ │ ├── user-3.jpg │ │ ├── user-4.jpg │ │ ├── user-5.jpg │ │ └── user-6.jpg ├── favicon.svg ├── next.svg ├── thirteen.svg └── vercel.svg ├── store ├── index.js ├── layoutReducer.js └── rootReducer.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/(auth)/coming-soon/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/coming-soon/page.jsx -------------------------------------------------------------------------------- /app/(auth)/forgot-password/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/forgot-password/page.jsx -------------------------------------------------------------------------------- /app/(auth)/forgot-password2/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/forgot-password2/page.jsx -------------------------------------------------------------------------------- /app/(auth)/forgot-password3/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/forgot-password3/page.jsx -------------------------------------------------------------------------------- /app/(auth)/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/layout.js -------------------------------------------------------------------------------- /app/(auth)/lock-screen/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/lock-screen/page.jsx -------------------------------------------------------------------------------- /app/(auth)/lock-screen2/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/lock-screen2/page.jsx -------------------------------------------------------------------------------- /app/(auth)/lock-screen3/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/lock-screen3/page.jsx -------------------------------------------------------------------------------- /app/(auth)/login2/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/login2/page.jsx -------------------------------------------------------------------------------- /app/(auth)/login3/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/login3/page.jsx -------------------------------------------------------------------------------- /app/(auth)/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/page.jsx -------------------------------------------------------------------------------- /app/(auth)/register/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/register/page.jsx -------------------------------------------------------------------------------- /app/(auth)/register2/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/register2/page.jsx -------------------------------------------------------------------------------- /app/(auth)/register3/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/register3/page.jsx -------------------------------------------------------------------------------- /app/(auth)/under-construction/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(auth)/under-construction/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/calender/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/calender/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/chat/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/chat/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/email/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/email/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/kanban/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/kanban/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/projects/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/projects/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(app)/todo/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(app)/todo/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(chart)/appex-chart/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(chart)/appex-chart/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(chart)/chartjs/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(chart)/chartjs/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(chart)/recharts/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(chart)/recharts/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/alert/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/alert/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/badges/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/badges/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/button/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/button/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/card/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/card/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/carousel/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/carousel/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/colors/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/colors/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/dropdown/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/dropdown/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/modal/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/modal/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/paginations/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/paginations/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/placeholder/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/placeholder/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/progress-bar/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/progress-bar/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/tab-accordion/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/tab-accordion/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/tooltip-popover/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/tooltip-popover/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/typography/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/typography/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(components)/video/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(components)/video/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/checkbox/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/checkbox/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/date-time-picker/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/date-time-picker/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/file-input/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/file-input/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/form-repeater/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/form-repeater/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/form-validation/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/form-validation/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/form-wizard/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/form-wizard/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/input-group/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/input-group/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/input-layout/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/input-layout/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/input-mask/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/input-mask/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/input/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/input/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/radio-button/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/radio-button/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/select/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/select/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/switch/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/switch/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(forms)/textarea/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(forms)/textarea/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(table)/react-table/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(table)/react-table/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(table)/table-basic/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(table)/table-basic/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/blank-page/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/blank-page/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/blog/[...id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/blog/[...id]/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/blog/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/blog/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/faq/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/faq/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/invoice-add/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/invoice-add/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/invoice-edit/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/invoice-edit/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/invoice-preview/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/invoice-preview/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/invoice/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/invoice/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/notifications/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/notifications/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/pricing/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/pricing/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/profile/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/profile/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(utility)/settings/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(utility)/settings/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(widget)/basic/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(widget)/basic/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/(widget)/statistic/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/(widget)/statistic/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/analytics/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/analytics/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/banking/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/banking/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/changelog/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/changelog/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/crm/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/crm/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/ecommerce/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/ecommerce/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/icons/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/icons/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/layout.js -------------------------------------------------------------------------------- /app/(dashboard)/map/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/map/page.jsx -------------------------------------------------------------------------------- /app/(dashboard)/project/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/(dashboard)/project/page.jsx -------------------------------------------------------------------------------- /app/[...not-found]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/[...not-found]/page.jsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/head.js -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/loading.js -------------------------------------------------------------------------------- /app/not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/not-found.js -------------------------------------------------------------------------------- /app/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/app.scss -------------------------------------------------------------------------------- /app/scss/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_alert.scss -------------------------------------------------------------------------------- /app/scss/components/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_auth.scss -------------------------------------------------------------------------------- /app/scss/components/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_badge.scss -------------------------------------------------------------------------------- /app/scss/components/_breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_breadcrumbs.scss -------------------------------------------------------------------------------- /app/scss/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_button.scss -------------------------------------------------------------------------------- /app/scss/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_card.scss -------------------------------------------------------------------------------- /app/scss/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_form.scss -------------------------------------------------------------------------------- /app/scss/components/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_input-group.scss -------------------------------------------------------------------------------- /app/scss/components/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_map.scss -------------------------------------------------------------------------------- /app/scss/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_pagination.scss -------------------------------------------------------------------------------- /app/scss/components/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_print.scss -------------------------------------------------------------------------------- /app/scss/components/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_progress.scss -------------------------------------------------------------------------------- /app/scss/components/_react-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_react-select.scss -------------------------------------------------------------------------------- /app/scss/components/_swiper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_swiper.scss -------------------------------------------------------------------------------- /app/scss/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_table.scss -------------------------------------------------------------------------------- /app/scss/components/_tippy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_tippy.scss -------------------------------------------------------------------------------- /app/scss/components/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/components/_typography.scss -------------------------------------------------------------------------------- /app/scss/layout/_footer.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/layout/_header.scss -------------------------------------------------------------------------------- /app/scss/layout/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/layout/_menu.scss -------------------------------------------------------------------------------- /app/scss/layout/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/layout/_settings.scss -------------------------------------------------------------------------------- /app/scss/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/layout/_sidebar.scss -------------------------------------------------------------------------------- /app/scss/utility/_calander.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/utility/_calander.scss -------------------------------------------------------------------------------- /app/scss/utility/_css-animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/utility/_css-animation.scss -------------------------------------------------------------------------------- /app/scss/utility/_full-calender.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/utility/_full-calender.scss -------------------------------------------------------------------------------- /app/scss/utility/_loading.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/scss/utility/_mix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/app/scss/utility/_mix.scss -------------------------------------------------------------------------------- /components/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/Loading.jsx -------------------------------------------------------------------------------- /components/partials/HomeBredCurbs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/HomeBredCurbs.jsx -------------------------------------------------------------------------------- /components/partials/SelectMonth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/SelectMonth.jsx -------------------------------------------------------------------------------- /components/partials/app/calender/EditEventModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/calender/EditEventModal.jsx -------------------------------------------------------------------------------- /components/partials/app/calender/EventModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/calender/EventModal.jsx -------------------------------------------------------------------------------- /components/partials/app/calender/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/calender/store.js -------------------------------------------------------------------------------- /components/partials/app/chat/Blank.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/Blank.jsx -------------------------------------------------------------------------------- /components/partials/app/chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/Chat.jsx -------------------------------------------------------------------------------- /components/partials/app/chat/Contacts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/Contacts.jsx -------------------------------------------------------------------------------- /components/partials/app/chat/Info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/Info.jsx -------------------------------------------------------------------------------- /components/partials/app/chat/MyProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/MyProfile.jsx -------------------------------------------------------------------------------- /components/partials/app/chat/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/chat/store.js -------------------------------------------------------------------------------- /components/partials/app/email/BottomFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/BottomFilter.jsx -------------------------------------------------------------------------------- /components/partials/app/email/ComposeEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/ComposeEmail.jsx -------------------------------------------------------------------------------- /components/partials/app/email/EmailDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/EmailDetails.jsx -------------------------------------------------------------------------------- /components/partials/app/email/EmailHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/EmailHeader.jsx -------------------------------------------------------------------------------- /components/partials/app/email/Emails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/Emails.jsx -------------------------------------------------------------------------------- /components/partials/app/email/Topfilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/Topfilter.jsx -------------------------------------------------------------------------------- /components/partials/app/email/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/email/store.js -------------------------------------------------------------------------------- /components/partials/app/kanban/AddColumn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/kanban/AddColumn.jsx -------------------------------------------------------------------------------- /components/partials/app/kanban/AddTaskModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/kanban/AddTaskModal.jsx -------------------------------------------------------------------------------- /components/partials/app/kanban/EditTask.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/kanban/EditTask.jsx -------------------------------------------------------------------------------- /components/partials/app/kanban/Task.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/kanban/Task.jsx -------------------------------------------------------------------------------- /components/partials/app/kanban/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/kanban/store.js -------------------------------------------------------------------------------- /components/partials/app/projects/AddProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/AddProject.jsx -------------------------------------------------------------------------------- /components/partials/app/projects/EditProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/EditProject.jsx -------------------------------------------------------------------------------- /components/partials/app/projects/ProjectGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/ProjectGrid.jsx -------------------------------------------------------------------------------- /components/partials/app/projects/ProjectList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/ProjectList.jsx -------------------------------------------------------------------------------- /components/partials/app/projects/project-details.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/project-details.jsx -------------------------------------------------------------------------------- /components/partials/app/projects/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/projects/store.js -------------------------------------------------------------------------------- /components/partials/app/todo/AddTodo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/AddTodo.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/BottomFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/BottomFilter.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/EditTodo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/EditTodo.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/TodoHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/TodoHeader.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/Todos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/Todos.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/Topfilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/Topfilter.jsx -------------------------------------------------------------------------------- /components/partials/app/todo/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/app/todo/store.js -------------------------------------------------------------------------------- /components/partials/auth/forgot-pass.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/forgot-pass.jsx -------------------------------------------------------------------------------- /components/partials/auth/lock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/lock.jsx -------------------------------------------------------------------------------- /components/partials/auth/login-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/login-form.jsx -------------------------------------------------------------------------------- /components/partials/auth/reg-from.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/reg-from.jsx -------------------------------------------------------------------------------- /components/partials/auth/social.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/social.jsx -------------------------------------------------------------------------------- /components/partials/auth/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/auth/store.js -------------------------------------------------------------------------------- /components/partials/blog/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/blog/Sidebar.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/AreaSpaline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/AreaSpaline.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/BasicArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/BasicArea.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Basicbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Basicbar.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Bubble.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Bubble.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Candlestick.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Candlestick.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Donut.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Donut.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/HorizontalBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/HorizontalBar.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Mixed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Mixed.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Pie.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Pie.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Radar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Radar.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Radialbars.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Radialbars.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Scatter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Scatter.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Stacked.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Stacked.jsx -------------------------------------------------------------------------------- /components/partials/chart/appex-chart/Stepline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/appex-chart/Stepline.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/Bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/Bar.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/BarStacked.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/BarStacked.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/HorizontalBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/HorizontalBar.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/LineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/LineChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/PollerAreaChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/PollerAreaChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/RadarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/RadarChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/chartjs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/chartjs/index.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/ReAreaChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/ReAreaChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/ReBarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/ReBarChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/ReLineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/ReLineChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/RePieChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/RePieChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/ReRadarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/ReRadarChart.jsx -------------------------------------------------------------------------------- /components/partials/chart/recharts/ScatterChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/chart/recharts/ScatterChart.jsx -------------------------------------------------------------------------------- /components/partials/footer/MobileFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/footer/MobileFooter.jsx -------------------------------------------------------------------------------- /components/partials/footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/footer/index.jsx -------------------------------------------------------------------------------- /components/partials/froms/DropZone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/DropZone.jsx -------------------------------------------------------------------------------- /components/partials/froms/HorizentalWizard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/HorizentalWizard.jsx -------------------------------------------------------------------------------- /components/partials/froms/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/Options.jsx -------------------------------------------------------------------------------- /components/partials/froms/ReactSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/ReactSelect.jsx -------------------------------------------------------------------------------- /components/partials/froms/Repeater.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/Repeater.jsx -------------------------------------------------------------------------------- /components/partials/froms/Simple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/Simple.jsx -------------------------------------------------------------------------------- /components/partials/froms/SimpleTooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/SimpleTooltip.jsx -------------------------------------------------------------------------------- /components/partials/froms/Vertical.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/Vertical.jsx -------------------------------------------------------------------------------- /components/partials/froms/multiple-rules.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/multiple-rules.jsx -------------------------------------------------------------------------------- /components/partials/froms/validation-types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/froms/validation-types.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/HorizentalMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/HorizentalMenu.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/Language.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/Language.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/Logo.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/Message.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/MobileLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/MobileLogo.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/MonoChrome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/MonoChrome.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/Notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/Notification.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/Profile.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/SearchModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/SearchModal.jsx -------------------------------------------------------------------------------- /components/partials/header/Tools/SwitchDark.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/Tools/SwitchDark.jsx -------------------------------------------------------------------------------- /components/partials/header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/header/index.jsx -------------------------------------------------------------------------------- /components/partials/map/GeoJSON.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/GeoJSON.jsx -------------------------------------------------------------------------------- /components/partials/map/VectoreMap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/VectoreMap.jsx -------------------------------------------------------------------------------- /components/partials/map/basic-map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/basic-map.jsx -------------------------------------------------------------------------------- /components/partials/map/ecomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/ecomp.json -------------------------------------------------------------------------------- /components/partials/map/marker-map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/marker-map.jsx -------------------------------------------------------------------------------- /components/partials/map/seg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/map/seg.json -------------------------------------------------------------------------------- /components/partials/settings/Tools/ContentWidth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/ContentWidth.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/FooterType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/FooterType.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/MenuClose.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/MenuClose.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/MenuHidden.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/MenuHidden.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/Menulayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/Menulayout.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/NavbarType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/NavbarType.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/Rtl.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/Rtl.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/Semidark.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/Semidark.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/Skin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/Skin.jsx -------------------------------------------------------------------------------- /components/partials/settings/Tools/Theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/Tools/Theme.jsx -------------------------------------------------------------------------------- /components/partials/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/settings/index.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/Logo.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/MobileMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/MobileMenu.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/Multi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/Multi.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/Navmenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/Navmenu.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/Submenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/Submenu.jsx -------------------------------------------------------------------------------- /components/partials/sidebar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/sidebar/index.jsx -------------------------------------------------------------------------------- /components/partials/step.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/step.jsx -------------------------------------------------------------------------------- /components/partials/table/ExampleOne.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/ExampleOne.jsx -------------------------------------------------------------------------------- /components/partials/table/ExampleTwo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/ExampleTwo.jsx -------------------------------------------------------------------------------- /components/partials/table/GlobalFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/GlobalFilter.jsx -------------------------------------------------------------------------------- /components/partials/table/TotalTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/TotalTable.jsx -------------------------------------------------------------------------------- /components/partials/table/company-table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/company-table.jsx -------------------------------------------------------------------------------- /components/partials/table/recentOrder-table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/recentOrder-table.jsx -------------------------------------------------------------------------------- /components/partials/table/team-table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/team-table.jsx -------------------------------------------------------------------------------- /components/partials/table/transactions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/table/transactions.jsx -------------------------------------------------------------------------------- /components/partials/widget/CalendarView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/CalendarView.jsx -------------------------------------------------------------------------------- /components/partials/widget/CardSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/CardSlider.jsx -------------------------------------------------------------------------------- /components/partials/widget/activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/activity.jsx -------------------------------------------------------------------------------- /components/partials/widget/block/image-block-1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/block/image-block-1.jsx -------------------------------------------------------------------------------- /components/partials/widget/block/image-block-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/block/image-block-2.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/Calculation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/Calculation.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/account-payable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/account-payable.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/account-receivable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/account-receivable.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/donut-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/donut-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/dount-chart2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/dount-chart2.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/earning-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/earning-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/group-chart-1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/group-chart-1.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/group-chart-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/group-chart-2.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/group-chart-3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/group-chart-3.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/group-chart-4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/group-chart-4.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/group-chart5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/group-chart5.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/history-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/history-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/order-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/order-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/profit-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/profit-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/radar-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/radar-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/radials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/radials.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/revenue-bar-chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/revenue-bar-chart.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/stack-bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/stack-bar.jsx -------------------------------------------------------------------------------- /components/partials/widget/chart/visitor-radar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/chart/visitor-radar.jsx -------------------------------------------------------------------------------- /components/partials/widget/customer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/customer.jsx -------------------------------------------------------------------------------- /components/partials/widget/message-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/message-list.jsx -------------------------------------------------------------------------------- /components/partials/widget/most-sales.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/most-sales.jsx -------------------------------------------------------------------------------- /components/partials/widget/most-sales2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/most-sales2.jsx -------------------------------------------------------------------------------- /components/partials/widget/products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/products.jsx -------------------------------------------------------------------------------- /components/partials/widget/recent-activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/recent-activity.jsx -------------------------------------------------------------------------------- /components/partials/widget/task-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/partials/widget/task-list.jsx -------------------------------------------------------------------------------- /components/skeleton/Grid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/skeleton/Grid.jsx -------------------------------------------------------------------------------- /components/skeleton/ListLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/skeleton/ListLoading.jsx -------------------------------------------------------------------------------- /components/skeleton/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/skeleton/Table.jsx -------------------------------------------------------------------------------- /components/ui/Accordion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Accordion.jsx -------------------------------------------------------------------------------- /components/ui/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Alert.jsx -------------------------------------------------------------------------------- /components/ui/Badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Badge.jsx -------------------------------------------------------------------------------- /components/ui/Breadcrumbs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Breadcrumbs.jsx -------------------------------------------------------------------------------- /components/ui/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Button.jsx -------------------------------------------------------------------------------- /components/ui/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Card.jsx -------------------------------------------------------------------------------- /components/ui/Carousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Carousel.jsx -------------------------------------------------------------------------------- /components/ui/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Checkbox.jsx -------------------------------------------------------------------------------- /components/ui/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Dropdown.jsx -------------------------------------------------------------------------------- /components/ui/Fileinput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Fileinput.jsx -------------------------------------------------------------------------------- /components/ui/FormGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/FormGroup.jsx -------------------------------------------------------------------------------- /components/ui/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Icon.jsx -------------------------------------------------------------------------------- /components/ui/Image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Image.jsx -------------------------------------------------------------------------------- /components/ui/InputGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/InputGroup.jsx -------------------------------------------------------------------------------- /components/ui/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Modal.jsx -------------------------------------------------------------------------------- /components/ui/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Pagination.jsx -------------------------------------------------------------------------------- /components/ui/ProgressBar/Bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/ProgressBar/Bar.jsx -------------------------------------------------------------------------------- /components/ui/ProgressBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/ProgressBar/index.jsx -------------------------------------------------------------------------------- /components/ui/Radio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Radio.jsx -------------------------------------------------------------------------------- /components/ui/Select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Select.jsx -------------------------------------------------------------------------------- /components/ui/Split-dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Split-dropdown.jsx -------------------------------------------------------------------------------- /components/ui/Switch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Switch.jsx -------------------------------------------------------------------------------- /components/ui/Textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Textarea.jsx -------------------------------------------------------------------------------- /components/ui/Textinput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Textinput.jsx -------------------------------------------------------------------------------- /components/ui/Tooltip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/Tooltip.jsx -------------------------------------------------------------------------------- /components/ui/VideoPlayer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/components/ui/VideoPlayer.jsx -------------------------------------------------------------------------------- /configs/themeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/configs/themeConfig.js -------------------------------------------------------------------------------- /constant/appex-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/constant/appex-chart.js -------------------------------------------------------------------------------- /constant/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/constant/data.js -------------------------------------------------------------------------------- /constant/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/constant/table-data.js -------------------------------------------------------------------------------- /constant/world-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/constant/world-map.json -------------------------------------------------------------------------------- /hooks/useContentWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useContentWidth.js -------------------------------------------------------------------------------- /hooks/useDarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useDarkMode.js -------------------------------------------------------------------------------- /hooks/useFooterType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useFooterType.js -------------------------------------------------------------------------------- /hooks/useMenuHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useMenuHidden.js -------------------------------------------------------------------------------- /hooks/useMenulayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useMenulayout.js -------------------------------------------------------------------------------- /hooks/useMobileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useMobileMenu.js -------------------------------------------------------------------------------- /hooks/useMonoChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useMonoChrome.js -------------------------------------------------------------------------------- /hooks/useNavbarType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useNavbarType.js -------------------------------------------------------------------------------- /hooks/useRtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useRtl.js -------------------------------------------------------------------------------- /hooks/useSemiDark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useSemiDark.js -------------------------------------------------------------------------------- /hooks/useSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useSidebar.js -------------------------------------------------------------------------------- /hooks/useSkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useSkin.js -------------------------------------------------------------------------------- /hooks/useWidth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/hooks/useWidth.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/images/all-img/404-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/404-2.svg -------------------------------------------------------------------------------- /public/assets/images/all-img/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/404.svg -------------------------------------------------------------------------------- /public/assets/images/all-img/big-shap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/big-shap1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/big-shap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/big-shap2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/big-shap3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/big-shap3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/big-shap4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/big-shap4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/c1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/c2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/c3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/c4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-5.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-6.png -------------------------------------------------------------------------------- /public/assets/images/all-img/card-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/card-7.png -------------------------------------------------------------------------------- /public/assets/images/all-img/ck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/ck.svg -------------------------------------------------------------------------------- /public/assets/images/all-img/cus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/cus-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/cus-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/cus-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/cus-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/cus-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/customer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/customer_1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/image-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/image-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/image-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/inbox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/inbox-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/inbox-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/inbox-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/inbox-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/inbox-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/login-bg.png -------------------------------------------------------------------------------- /public/assets/images/all-img/main-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/main-user.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-5.png -------------------------------------------------------------------------------- /public/assets/images/all-img/p-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/p-6.png -------------------------------------------------------------------------------- /public/assets/images/all-img/page-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/page-bg.png -------------------------------------------------------------------------------- /public/assets/images/all-img/post-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/post-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/post-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/post-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/shade-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/shade-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/shade-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/shade-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/shade-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/shade-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/shade-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/shade-4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/t1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-5.png -------------------------------------------------------------------------------- /public/assets/images/all-img/thumb-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/thumb-6.png -------------------------------------------------------------------------------- /public/assets/images/all-img/user-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/user-big.png -------------------------------------------------------------------------------- /public/assets/images/all-img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/user.png -------------------------------------------------------------------------------- /public/assets/images/all-img/user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/user2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/user3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/user3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/user4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/user4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/video-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/video-poster.png -------------------------------------------------------------------------------- /public/assets/images/all-img/visa-card-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/visa-card-bg.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-2.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-3-1.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-3.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-4.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-5.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-6.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-7.png -------------------------------------------------------------------------------- /public/assets/images/all-img/widget-bg-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/all-img/widget-bg-8.png -------------------------------------------------------------------------------- /public/assets/images/auth/ils1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/auth/ils1.svg -------------------------------------------------------------------------------- /public/assets/images/auth/ilst2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/auth/ilst2.png -------------------------------------------------------------------------------- /public/assets/images/avatar/av-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-1.svg -------------------------------------------------------------------------------- /public/assets/images/avatar/av-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-2.svg -------------------------------------------------------------------------------- /public/assets/images/avatar/av-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-3.svg -------------------------------------------------------------------------------- /public/assets/images/avatar/av-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-4.svg -------------------------------------------------------------------------------- /public/assets/images/avatar/av-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-5.svg -------------------------------------------------------------------------------- /public/assets/images/avatar/av-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/avatar/av-6.svg -------------------------------------------------------------------------------- /public/assets/images/chat/chat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-1.png -------------------------------------------------------------------------------- /public/assets/images/chat/chat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-2.png -------------------------------------------------------------------------------- /public/assets/images/chat/chat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-3.png -------------------------------------------------------------------------------- /public/assets/images/chat/chat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-4.png -------------------------------------------------------------------------------- /public/assets/images/chat/chat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-5.png -------------------------------------------------------------------------------- /public/assets/images/chat/chat-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/chat-6.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd1.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd2.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd3.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd4.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd5.png -------------------------------------------------------------------------------- /public/assets/images/chat/sd6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/chat/sd6.png -------------------------------------------------------------------------------- /public/assets/images/demo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/demo/demo.png -------------------------------------------------------------------------------- /public/assets/images/flags/bd-.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/flags/bd-.svg.png -------------------------------------------------------------------------------- /public/assets/images/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/flags/en.svg -------------------------------------------------------------------------------- /public/assets/images/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/flags/gn.png -------------------------------------------------------------------------------- /public/assets/images/flags/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/flags/usa.png -------------------------------------------------------------------------------- /public/assets/images/icon/ck-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/ck-white.svg -------------------------------------------------------------------------------- /public/assets/images/icon/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/crown.svg -------------------------------------------------------------------------------- /public/assets/images/icon/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/fb.svg -------------------------------------------------------------------------------- /public/assets/images/icon/file-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/file-1.svg -------------------------------------------------------------------------------- /public/assets/images/icon/gp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/gp.svg -------------------------------------------------------------------------------- /public/assets/images/icon/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/images/icon/in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/in.svg -------------------------------------------------------------------------------- /public/assets/images/icon/pdf-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/pdf-1.svg -------------------------------------------------------------------------------- /public/assets/images/icon/pdf-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/pdf-2.svg -------------------------------------------------------------------------------- /public/assets/images/icon/scr-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/scr-1.svg -------------------------------------------------------------------------------- /public/assets/images/icon/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/success.svg -------------------------------------------------------------------------------- /public/assets/images/icon/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/tw.svg -------------------------------------------------------------------------------- /public/assets/images/icon/white-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/white-s.svg -------------------------------------------------------------------------------- /public/assets/images/icon/zip-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/icon/zip-1.svg -------------------------------------------------------------------------------- /public/assets/images/logo/logo-c-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/logo/logo-c-white.svg -------------------------------------------------------------------------------- /public/assets/images/logo/logo-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/logo/logo-c.svg -------------------------------------------------------------------------------- /public/assets/images/logo/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/logo/logo-white.svg -------------------------------------------------------------------------------- /public/assets/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/logo/logo.svg -------------------------------------------------------------------------------- /public/assets/images/logo/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/logo/visa.svg -------------------------------------------------------------------------------- /public/assets/images/post/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/c1.png -------------------------------------------------------------------------------- /public/assets/images/post/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/c2.png -------------------------------------------------------------------------------- /public/assets/images/post/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/c3.png -------------------------------------------------------------------------------- /public/assets/images/post/t-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/t-1.png -------------------------------------------------------------------------------- /public/assets/images/post/t-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/t-2.png -------------------------------------------------------------------------------- /public/assets/images/post/t-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/post/t-3.png -------------------------------------------------------------------------------- /public/assets/images/svg/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/blank.svg -------------------------------------------------------------------------------- /public/assets/images/svg/dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/dc.svg -------------------------------------------------------------------------------- /public/assets/images/svg/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/fb.svg -------------------------------------------------------------------------------- /public/assets/images/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/gift.svg -------------------------------------------------------------------------------- /public/assets/images/svg/img-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/img-1.svg -------------------------------------------------------------------------------- /public/assets/images/svg/img-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/img-2.svg -------------------------------------------------------------------------------- /public/assets/images/svg/ins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/ins.svg -------------------------------------------------------------------------------- /public/assets/images/svg/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/line.svg -------------------------------------------------------------------------------- /public/assets/images/svg/ln.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/ln.svg -------------------------------------------------------------------------------- /public/assets/images/svg/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/loader.svg -------------------------------------------------------------------------------- /public/assets/images/svg/mobile-menu-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/mobile-menu-bg.svg -------------------------------------------------------------------------------- /public/assets/images/svg/path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/path.svg -------------------------------------------------------------------------------- /public/assets/images/svg/q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/q.svg -------------------------------------------------------------------------------- /public/assets/images/svg/rabit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/rabit.svg -------------------------------------------------------------------------------- /public/assets/images/svg/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/sk.svg -------------------------------------------------------------------------------- /public/assets/images/svg/tw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/tw.svg -------------------------------------------------------------------------------- /public/assets/images/svg/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/upload.svg -------------------------------------------------------------------------------- /public/assets/images/svg/widgetvector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/widgetvector.svg -------------------------------------------------------------------------------- /public/assets/images/svg/widgetvector2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/svg/widgetvector2.svg -------------------------------------------------------------------------------- /public/assets/images/users/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-1.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-2.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-3.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-4.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-5.jpg -------------------------------------------------------------------------------- /public/assets/images/users/user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/assets/images/users/user-6.jpg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/store/index.js -------------------------------------------------------------------------------- /store/layoutReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/store/layoutReducer.js -------------------------------------------------------------------------------- /store/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/store/rootReducer.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redtomato0129/dashcode-nextjs-admin-template/HEAD/yarn.lock --------------------------------------------------------------------------------