├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── jsvectormap.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public └── images │ ├── best-value-banner.png │ ├── brand │ ├── brand-01.svg │ ├── brand-02.svg │ ├── brand-03.svg │ ├── brand-04.svg │ ├── brand-05.svg │ ├── brand-06.svg │ ├── brand-07.svg │ ├── brand-08.svg │ ├── brand-09.svg │ ├── brand-10.svg │ ├── brand-11.svg │ ├── brand-12.svg │ ├── brand-13.svg │ ├── brand-14.svg │ ├── brand-15.svg │ ├── brand-16.svg │ ├── brand-17.svg │ ├── brand-18.svg │ ├── brand-19.svg │ └── brand-20.svg │ ├── cards │ ├── cards-01.png │ ├── cards-02.png │ ├── cards-03.png │ ├── cards-04.png │ ├── cards-05.png │ └── cards-06.png │ ├── carousel │ ├── carousel-01.jpg │ ├── carousel-02.jpg │ └── carousel-03.jpg │ ├── country │ ├── country-01.svg │ ├── country-02.svg │ ├── country-03.svg │ ├── country-04.svg │ ├── country-05.svg │ └── country-06.svg │ ├── cover │ ├── cover-01.png │ ├── cover-02.jpg │ ├── cover-03.jpg │ ├── cover-04.jpg │ └── cover-05.jpg │ ├── favicon.ico │ ├── grids │ ├── grid-01.svg │ └── grid-02.svg │ ├── icon │ ├── icon-arrow-down.svg │ ├── icon-calendar.svg │ ├── icon-copy-alt.svg │ ├── icon-moon.svg │ └── icon-sun.svg │ ├── illustration │ ├── illustration-01.svg │ ├── illustration-02.svg │ ├── illustration-03.svg │ └── illustration-04.svg │ ├── logo │ ├── logo-dark.svg │ ├── logo-icon.svg │ └── logo.svg │ ├── product │ ├── product-01.png │ ├── product-02.png │ ├── product-03.png │ ├── product-04.png │ └── product-thumb.png │ ├── task │ └── task-01.jpg │ ├── team │ ├── team-01.png │ ├── team-02.png │ ├── team-03.png │ ├── team-04.png │ ├── team-05.png │ ├── team-06.png │ ├── team-07.png │ └── team-08.png │ ├── todo │ ├── dribble.svg │ ├── linkdin.svg │ └── uideck.svg │ └── user │ ├── user-01.png │ ├── user-02.png │ ├── user-03.png │ ├── user-04.png │ ├── user-05.png │ ├── user-06.png │ ├── user-07.png │ ├── user-08.png │ ├── user-09.png │ ├── user-10.png │ ├── user-11.png │ ├── user-12.png │ ├── user-13.png │ ├── user-14.png │ ├── user-15.png │ ├── user-16.png │ ├── user-17.png │ ├── user-18.png │ ├── user-19.png │ ├── user-20.png │ ├── user-21.png │ ├── user-22.png │ ├── user-23.png │ ├── user-24.png │ ├── user-25.png │ ├── user-26.png │ ├── user-27.png │ ├── user-28.png │ ├── user-29.png │ └── user-30.png ├── src ├── app │ ├── (home) │ │ ├── _components │ │ │ ├── chats-card.tsx │ │ │ ├── overview-cards │ │ │ │ ├── card.tsx │ │ │ │ ├── icons.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── skeleton.tsx │ │ │ └── region-labels │ │ │ │ ├── index.tsx │ │ │ │ └── map.tsx │ │ ├── fetch.ts │ │ └── page.tsx │ ├── auth │ │ └── sign-in │ │ │ └── page.tsx │ ├── calendar │ │ └── page.tsx │ ├── charts │ │ └── basic-chart │ │ │ └── page.tsx │ ├── favicon.ico │ ├── forms │ │ ├── form-elements │ │ │ └── page.tsx │ │ └── form-layout │ │ │ ├── _components │ │ │ ├── contact-form.tsx │ │ │ ├── sign-in-form.tsx │ │ │ └── sign-up-form.tsx │ │ │ └── page.tsx │ ├── layout.tsx │ ├── pages │ │ └── settings │ │ │ ├── _components │ │ │ ├── personal-info.tsx │ │ │ └── upload-photo.tsx │ │ │ └── page.tsx │ ├── profile │ │ ├── _components │ │ │ ├── icons.tsx │ │ │ └── social-accounts.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── providers.tsx │ ├── tables │ │ └── page.tsx │ └── ui-elements │ │ ├── alerts │ │ └── page.tsx │ │ └── buttons │ │ └── page.tsx ├── assets │ ├── icons.tsx │ └── logos │ │ ├── dark.svg │ │ ├── facebook.svg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── index.ts │ │ ├── main.svg │ │ ├── vimeo.svg │ │ └── x.svg ├── components │ ├── Auth │ │ ├── GoogleSigninButton.tsx │ │ ├── Signin │ │ │ └── index.tsx │ │ └── SigninWithPassword.tsx │ ├── Breadcrumbs │ │ └── Breadcrumb.tsx │ ├── CalenderBox │ │ └── index.tsx │ ├── Charts │ │ ├── campaign-visitors │ │ │ ├── chart.tsx │ │ │ └── index.tsx │ │ ├── payments-overview │ │ │ ├── chart.tsx │ │ │ └── index.tsx │ │ ├── used-devices │ │ │ ├── chart.tsx │ │ │ └── index.tsx │ │ └── weeks-profit │ │ │ ├── chart.tsx │ │ │ └── index.tsx │ ├── FormElements │ │ ├── Checkboxes │ │ │ ├── CheckboxFive.tsx │ │ │ ├── CheckboxFour.tsx │ │ │ ├── CheckboxOne.tsx │ │ │ ├── CheckboxThree.tsx │ │ │ └── CheckboxTwo.tsx │ │ ├── DatePicker │ │ │ ├── DatePickerOne.tsx │ │ │ └── DatePickerTwo.tsx │ │ ├── InputGroup │ │ │ ├── index.tsx │ │ │ └── text-area.tsx │ │ ├── MultiSelect.tsx │ │ ├── Switchers │ │ │ ├── SwitcherFour.tsx │ │ │ ├── SwitcherOne.tsx │ │ │ ├── SwitcherThree.tsx │ │ │ └── SwitcherTwo.tsx │ │ ├── checkbox.tsx │ │ ├── radio.tsx │ │ ├── select.tsx │ │ └── switch.tsx │ ├── Layouts │ │ ├── header │ │ │ ├── icons.tsx │ │ │ ├── index.tsx │ │ │ ├── notification │ │ │ │ ├── icons.tsx │ │ │ │ └── index.tsx │ │ │ ├── theme-toggle │ │ │ │ ├── icons.tsx │ │ │ │ └── index.tsx │ │ │ └── user-info │ │ │ │ ├── icons.tsx │ │ │ │ └── index.tsx │ │ ├── showcase-section.tsx │ │ └── sidebar │ │ │ ├── data │ │ │ ├── index.ts │ │ │ └── ui-elements-list.ts │ │ │ ├── icons.tsx │ │ │ ├── index.tsx │ │ │ ├── menu-item.tsx │ │ │ └── sidebar-context.tsx │ ├── Tables │ │ ├── fetch.ts │ │ ├── icons.tsx │ │ ├── invoice-table.tsx │ │ ├── top-channels │ │ │ ├── index.tsx │ │ │ └── skeleton.tsx │ │ └── top-products │ │ │ ├── index.tsx │ │ │ └── skeleton.tsx │ ├── logo.tsx │ ├── period-picker.tsx │ ├── ui-elements │ │ ├── alert │ │ │ ├── icons.tsx │ │ │ └── index.tsx │ │ └── button.tsx │ └── ui │ │ ├── dropdown.tsx │ │ ├── skeleton.tsx │ │ └── table.tsx ├── css │ ├── satoshi.css │ └── style.css ├── fonts │ ├── Satoshi-Black.eot │ ├── Satoshi-Black.ttf │ ├── Satoshi-Black.woff │ ├── Satoshi-Black.woff2 │ ├── Satoshi-BlackItalic.eot │ ├── Satoshi-BlackItalic.ttf │ ├── Satoshi-BlackItalic.woff │ ├── Satoshi-BlackItalic.woff2 │ ├── Satoshi-Bold.eot │ ├── Satoshi-Bold.ttf │ ├── Satoshi-Bold.woff │ ├── Satoshi-Bold.woff2 │ ├── Satoshi-BoldItalic.eot │ ├── Satoshi-BoldItalic.ttf │ ├── Satoshi-BoldItalic.woff │ ├── Satoshi-BoldItalic.woff2 │ ├── Satoshi-Italic.eot │ ├── Satoshi-Italic.ttf │ ├── Satoshi-Italic.woff │ ├── Satoshi-Italic.woff2 │ ├── Satoshi-Light.eot │ ├── Satoshi-Light.ttf │ ├── Satoshi-Light.woff │ ├── Satoshi-Light.woff2 │ ├── Satoshi-LightItalic.eot │ ├── Satoshi-LightItalic.ttf │ ├── Satoshi-LightItalic.woff │ ├── Satoshi-LightItalic.woff2 │ ├── Satoshi-Medium.eot │ ├── Satoshi-Medium.ttf │ ├── Satoshi-Medium.woff │ ├── Satoshi-Medium.woff2 │ ├── Satoshi-MediumItalic.eot │ ├── Satoshi-MediumItalic.ttf │ ├── Satoshi-MediumItalic.woff │ ├── Satoshi-MediumItalic.woff2 │ ├── Satoshi-Regular.eot │ ├── Satoshi-Regular.ttf │ ├── Satoshi-Regular.woff │ ├── Satoshi-Regular.woff2 │ ├── Satoshi-Variable.eot │ ├── Satoshi-Variable.ttf │ ├── Satoshi-Variable.woff │ ├── Satoshi-Variable.woff2 │ ├── Satoshi-VariableItalic.eot │ ├── Satoshi-VariableItalic.ttf │ ├── Satoshi-VariableItalic.woff │ └── Satoshi-VariableItalic.woff2 ├── hooks │ ├── use-click-outside.ts │ └── use-mobile.ts ├── js │ └── us-aea-en.js ├── lib │ ├── format-message-time.ts │ ├── format-number.ts │ └── utils.ts ├── services │ └── charts.services.ts ├── types │ ├── icon-props.ts │ └── set-state-action-type.ts └── utils │ └── timeframe-extractor.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /jsvectormap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/jsvectormap.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/images/best-value-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/best-value-banner.png -------------------------------------------------------------------------------- /public/images/brand/brand-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-01.svg -------------------------------------------------------------------------------- /public/images/brand/brand-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-02.svg -------------------------------------------------------------------------------- /public/images/brand/brand-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-03.svg -------------------------------------------------------------------------------- /public/images/brand/brand-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-04.svg -------------------------------------------------------------------------------- /public/images/brand/brand-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-05.svg -------------------------------------------------------------------------------- /public/images/brand/brand-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-06.svg -------------------------------------------------------------------------------- /public/images/brand/brand-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-07.svg -------------------------------------------------------------------------------- /public/images/brand/brand-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-08.svg -------------------------------------------------------------------------------- /public/images/brand/brand-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-09.svg -------------------------------------------------------------------------------- /public/images/brand/brand-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-10.svg -------------------------------------------------------------------------------- /public/images/brand/brand-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-11.svg -------------------------------------------------------------------------------- /public/images/brand/brand-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-12.svg -------------------------------------------------------------------------------- /public/images/brand/brand-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-13.svg -------------------------------------------------------------------------------- /public/images/brand/brand-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-14.svg -------------------------------------------------------------------------------- /public/images/brand/brand-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-15.svg -------------------------------------------------------------------------------- /public/images/brand/brand-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-16.svg -------------------------------------------------------------------------------- /public/images/brand/brand-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-17.svg -------------------------------------------------------------------------------- /public/images/brand/brand-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-18.svg -------------------------------------------------------------------------------- /public/images/brand/brand-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-19.svg -------------------------------------------------------------------------------- /public/images/brand/brand-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/brand/brand-20.svg -------------------------------------------------------------------------------- /public/images/cards/cards-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-01.png -------------------------------------------------------------------------------- /public/images/cards/cards-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-02.png -------------------------------------------------------------------------------- /public/images/cards/cards-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-03.png -------------------------------------------------------------------------------- /public/images/cards/cards-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-04.png -------------------------------------------------------------------------------- /public/images/cards/cards-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-05.png -------------------------------------------------------------------------------- /public/images/cards/cards-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cards/cards-06.png -------------------------------------------------------------------------------- /public/images/carousel/carousel-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/carousel/carousel-01.jpg -------------------------------------------------------------------------------- /public/images/carousel/carousel-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/carousel/carousel-02.jpg -------------------------------------------------------------------------------- /public/images/carousel/carousel-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/carousel/carousel-03.jpg -------------------------------------------------------------------------------- /public/images/country/country-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-01.svg -------------------------------------------------------------------------------- /public/images/country/country-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-02.svg -------------------------------------------------------------------------------- /public/images/country/country-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-03.svg -------------------------------------------------------------------------------- /public/images/country/country-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-04.svg -------------------------------------------------------------------------------- /public/images/country/country-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-05.svg -------------------------------------------------------------------------------- /public/images/country/country-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/country/country-06.svg -------------------------------------------------------------------------------- /public/images/cover/cover-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cover/cover-01.png -------------------------------------------------------------------------------- /public/images/cover/cover-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cover/cover-02.jpg -------------------------------------------------------------------------------- /public/images/cover/cover-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cover/cover-03.jpg -------------------------------------------------------------------------------- /public/images/cover/cover-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cover/cover-04.jpg -------------------------------------------------------------------------------- /public/images/cover/cover-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/cover/cover-05.jpg -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/grids/grid-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/grids/grid-01.svg -------------------------------------------------------------------------------- /public/images/grids/grid-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/grids/grid-02.svg -------------------------------------------------------------------------------- /public/images/icon/icon-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/icon/icon-arrow-down.svg -------------------------------------------------------------------------------- /public/images/icon/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/icon/icon-calendar.svg -------------------------------------------------------------------------------- /public/images/icon/icon-copy-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/icon/icon-copy-alt.svg -------------------------------------------------------------------------------- /public/images/icon/icon-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/icon/icon-moon.svg -------------------------------------------------------------------------------- /public/images/icon/icon-sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/icon/icon-sun.svg -------------------------------------------------------------------------------- /public/images/illustration/illustration-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/illustration/illustration-01.svg -------------------------------------------------------------------------------- /public/images/illustration/illustration-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/illustration/illustration-02.svg -------------------------------------------------------------------------------- /public/images/illustration/illustration-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/illustration/illustration-03.svg -------------------------------------------------------------------------------- /public/images/illustration/illustration-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/illustration/illustration-04.svg -------------------------------------------------------------------------------- /public/images/logo/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/logo/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/logo/logo-icon.svg -------------------------------------------------------------------------------- /public/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/logo/logo.svg -------------------------------------------------------------------------------- /public/images/product/product-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/product/product-01.png -------------------------------------------------------------------------------- /public/images/product/product-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/product/product-02.png -------------------------------------------------------------------------------- /public/images/product/product-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/product/product-03.png -------------------------------------------------------------------------------- /public/images/product/product-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/product/product-04.png -------------------------------------------------------------------------------- /public/images/product/product-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/product/product-thumb.png -------------------------------------------------------------------------------- /public/images/task/task-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/task/task-01.jpg -------------------------------------------------------------------------------- /public/images/team/team-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-01.png -------------------------------------------------------------------------------- /public/images/team/team-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-02.png -------------------------------------------------------------------------------- /public/images/team/team-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-03.png -------------------------------------------------------------------------------- /public/images/team/team-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-04.png -------------------------------------------------------------------------------- /public/images/team/team-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-05.png -------------------------------------------------------------------------------- /public/images/team/team-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-06.png -------------------------------------------------------------------------------- /public/images/team/team-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-07.png -------------------------------------------------------------------------------- /public/images/team/team-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/team/team-08.png -------------------------------------------------------------------------------- /public/images/todo/dribble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/todo/dribble.svg -------------------------------------------------------------------------------- /public/images/todo/linkdin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/todo/linkdin.svg -------------------------------------------------------------------------------- /public/images/todo/uideck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/todo/uideck.svg -------------------------------------------------------------------------------- /public/images/user/user-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-01.png -------------------------------------------------------------------------------- /public/images/user/user-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-02.png -------------------------------------------------------------------------------- /public/images/user/user-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-03.png -------------------------------------------------------------------------------- /public/images/user/user-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-04.png -------------------------------------------------------------------------------- /public/images/user/user-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-05.png -------------------------------------------------------------------------------- /public/images/user/user-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-06.png -------------------------------------------------------------------------------- /public/images/user/user-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-07.png -------------------------------------------------------------------------------- /public/images/user/user-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-08.png -------------------------------------------------------------------------------- /public/images/user/user-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-09.png -------------------------------------------------------------------------------- /public/images/user/user-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-10.png -------------------------------------------------------------------------------- /public/images/user/user-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-11.png -------------------------------------------------------------------------------- /public/images/user/user-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-12.png -------------------------------------------------------------------------------- /public/images/user/user-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-13.png -------------------------------------------------------------------------------- /public/images/user/user-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-14.png -------------------------------------------------------------------------------- /public/images/user/user-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-15.png -------------------------------------------------------------------------------- /public/images/user/user-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-16.png -------------------------------------------------------------------------------- /public/images/user/user-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-17.png -------------------------------------------------------------------------------- /public/images/user/user-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-18.png -------------------------------------------------------------------------------- /public/images/user/user-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-19.png -------------------------------------------------------------------------------- /public/images/user/user-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-20.png -------------------------------------------------------------------------------- /public/images/user/user-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-21.png -------------------------------------------------------------------------------- /public/images/user/user-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-22.png -------------------------------------------------------------------------------- /public/images/user/user-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-23.png -------------------------------------------------------------------------------- /public/images/user/user-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-24.png -------------------------------------------------------------------------------- /public/images/user/user-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-25.png -------------------------------------------------------------------------------- /public/images/user/user-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-26.png -------------------------------------------------------------------------------- /public/images/user/user-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-27.png -------------------------------------------------------------------------------- /public/images/user/user-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-28.png -------------------------------------------------------------------------------- /public/images/user/user-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-29.png -------------------------------------------------------------------------------- /public/images/user/user-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/public/images/user/user-30.png -------------------------------------------------------------------------------- /src/app/(home)/_components/chats-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/chats-card.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/overview-cards/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/overview-cards/card.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/overview-cards/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/overview-cards/icons.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/overview-cards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/overview-cards/index.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/overview-cards/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/overview-cards/skeleton.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/region-labels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/region-labels/index.tsx -------------------------------------------------------------------------------- /src/app/(home)/_components/region-labels/map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/_components/region-labels/map.tsx -------------------------------------------------------------------------------- /src/app/(home)/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/fetch.ts -------------------------------------------------------------------------------- /src/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/(home)/page.tsx -------------------------------------------------------------------------------- /src/app/auth/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/auth/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/calendar/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/calendar/page.tsx -------------------------------------------------------------------------------- /src/app/charts/basic-chart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/charts/basic-chart/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/forms/form-elements/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/forms/form-elements/page.tsx -------------------------------------------------------------------------------- /src/app/forms/form-layout/_components/contact-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/forms/form-layout/_components/contact-form.tsx -------------------------------------------------------------------------------- /src/app/forms/form-layout/_components/sign-in-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/forms/form-layout/_components/sign-in-form.tsx -------------------------------------------------------------------------------- /src/app/forms/form-layout/_components/sign-up-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/forms/form-layout/_components/sign-up-form.tsx -------------------------------------------------------------------------------- /src/app/forms/form-layout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/forms/form-layout/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/pages/settings/_components/personal-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/pages/settings/_components/personal-info.tsx -------------------------------------------------------------------------------- /src/app/pages/settings/_components/upload-photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/pages/settings/_components/upload-photo.tsx -------------------------------------------------------------------------------- /src/app/pages/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/pages/settings/page.tsx -------------------------------------------------------------------------------- /src/app/profile/_components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/profile/_components/icons.tsx -------------------------------------------------------------------------------- /src/app/profile/_components/social-accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/profile/_components/social-accounts.tsx -------------------------------------------------------------------------------- /src/app/profile/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/profile/layout.tsx -------------------------------------------------------------------------------- /src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/profile/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/tables/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/tables/page.tsx -------------------------------------------------------------------------------- /src/app/ui-elements/alerts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/ui-elements/alerts/page.tsx -------------------------------------------------------------------------------- /src/app/ui-elements/buttons/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/app/ui-elements/buttons/page.tsx -------------------------------------------------------------------------------- /src/assets/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/icons.tsx -------------------------------------------------------------------------------- /src/assets/logos/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/dark.svg -------------------------------------------------------------------------------- /src/assets/logos/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/facebook.svg -------------------------------------------------------------------------------- /src/assets/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/github.svg -------------------------------------------------------------------------------- /src/assets/logos/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/google.svg -------------------------------------------------------------------------------- /src/assets/logos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/index.ts -------------------------------------------------------------------------------- /src/assets/logos/main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/main.svg -------------------------------------------------------------------------------- /src/assets/logos/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/vimeo.svg -------------------------------------------------------------------------------- /src/assets/logos/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/assets/logos/x.svg -------------------------------------------------------------------------------- /src/components/Auth/GoogleSigninButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Auth/GoogleSigninButton.tsx -------------------------------------------------------------------------------- /src/components/Auth/Signin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Auth/Signin/index.tsx -------------------------------------------------------------------------------- /src/components/Auth/SigninWithPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Auth/SigninWithPassword.tsx -------------------------------------------------------------------------------- /src/components/Breadcrumbs/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Breadcrumbs/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/CalenderBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/CalenderBox/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/campaign-visitors/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/campaign-visitors/chart.tsx -------------------------------------------------------------------------------- /src/components/Charts/campaign-visitors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/campaign-visitors/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/payments-overview/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/payments-overview/chart.tsx -------------------------------------------------------------------------------- /src/components/Charts/payments-overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/payments-overview/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/used-devices/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/used-devices/chart.tsx -------------------------------------------------------------------------------- /src/components/Charts/used-devices/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/used-devices/index.tsx -------------------------------------------------------------------------------- /src/components/Charts/weeks-profit/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/weeks-profit/chart.tsx -------------------------------------------------------------------------------- /src/components/Charts/weeks-profit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Charts/weeks-profit/index.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Checkboxes/CheckboxFive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Checkboxes/CheckboxFive.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Checkboxes/CheckboxFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Checkboxes/CheckboxFour.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Checkboxes/CheckboxOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Checkboxes/CheckboxOne.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Checkboxes/CheckboxThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Checkboxes/CheckboxThree.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Checkboxes/CheckboxTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Checkboxes/CheckboxTwo.tsx -------------------------------------------------------------------------------- /src/components/FormElements/DatePicker/DatePickerOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/DatePicker/DatePickerOne.tsx -------------------------------------------------------------------------------- /src/components/FormElements/DatePicker/DatePickerTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/DatePicker/DatePickerTwo.tsx -------------------------------------------------------------------------------- /src/components/FormElements/InputGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/InputGroup/index.tsx -------------------------------------------------------------------------------- /src/components/FormElements/InputGroup/text-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/InputGroup/text-area.tsx -------------------------------------------------------------------------------- /src/components/FormElements/MultiSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/MultiSelect.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Switchers/SwitcherFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Switchers/SwitcherFour.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Switchers/SwitcherOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Switchers/SwitcherOne.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Switchers/SwitcherThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Switchers/SwitcherThree.tsx -------------------------------------------------------------------------------- /src/components/FormElements/Switchers/SwitcherTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/Switchers/SwitcherTwo.tsx -------------------------------------------------------------------------------- /src/components/FormElements/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/checkbox.tsx -------------------------------------------------------------------------------- /src/components/FormElements/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/radio.tsx -------------------------------------------------------------------------------- /src/components/FormElements/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/select.tsx -------------------------------------------------------------------------------- /src/components/FormElements/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/FormElements/switch.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/icons.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/notification/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/notification/icons.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/notification/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/theme-toggle/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/theme-toggle/icons.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/theme-toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/theme-toggle/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/user-info/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/user-info/icons.tsx -------------------------------------------------------------------------------- /src/components/Layouts/header/user-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/header/user-info/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/showcase-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/showcase-section.tsx -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/data/index.ts -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/data/ui-elements-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/data/ui-elements-list.ts -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/icons.tsx -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/menu-item.tsx -------------------------------------------------------------------------------- /src/components/Layouts/sidebar/sidebar-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Layouts/sidebar/sidebar-context.tsx -------------------------------------------------------------------------------- /src/components/Tables/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/fetch.ts -------------------------------------------------------------------------------- /src/components/Tables/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/icons.tsx -------------------------------------------------------------------------------- /src/components/Tables/invoice-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/invoice-table.tsx -------------------------------------------------------------------------------- /src/components/Tables/top-channels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/top-channels/index.tsx -------------------------------------------------------------------------------- /src/components/Tables/top-channels/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/top-channels/skeleton.tsx -------------------------------------------------------------------------------- /src/components/Tables/top-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/top-products/index.tsx -------------------------------------------------------------------------------- /src/components/Tables/top-products/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/Tables/top-products/skeleton.tsx -------------------------------------------------------------------------------- /src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/logo.tsx -------------------------------------------------------------------------------- /src/components/period-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/period-picker.tsx -------------------------------------------------------------------------------- /src/components/ui-elements/alert/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui-elements/alert/icons.tsx -------------------------------------------------------------------------------- /src/components/ui-elements/alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui-elements/alert/index.tsx -------------------------------------------------------------------------------- /src/components/ui-elements/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui-elements/button.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui/dropdown.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/css/satoshi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/css/satoshi.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/fonts/Satoshi-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Black.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Black.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Black.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Black.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BlackItalic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BlackItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BlackItalic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Bold.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Bold.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BoldItalic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BoldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Italic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Italic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Italic.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Light.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Light.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Light.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-LightItalic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-LightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-LightItalic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-LightItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Medium.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Medium.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-MediumItalic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-MediumItalic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Regular.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-Variable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Variable.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-Variable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Variable.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /src/fonts/Satoshi-VariableItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-VariableItalic.eot -------------------------------------------------------------------------------- /src/fonts/Satoshi-VariableItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-VariableItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Satoshi-VariableItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-VariableItalic.woff -------------------------------------------------------------------------------- /src/fonts/Satoshi-VariableItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/fonts/Satoshi-VariableItalic.woff2 -------------------------------------------------------------------------------- /src/hooks/use-click-outside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/hooks/use-click-outside.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /src/js/us-aea-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/js/us-aea-en.js -------------------------------------------------------------------------------- /src/lib/format-message-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/lib/format-message-time.ts -------------------------------------------------------------------------------- /src/lib/format-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/lib/format-number.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/services/charts.services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/services/charts.services.ts -------------------------------------------------------------------------------- /src/types/icon-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/types/icon-props.ts -------------------------------------------------------------------------------- /src/types/set-state-action-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/types/set-state-action-type.ts -------------------------------------------------------------------------------- /src/utils/timeframe-extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/src/utils/timeframe-extractor.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextAdminHQ/nextjs-admin-dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------