gitextract_7a2pmtz8/ ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app/ │ ├── (auth)/ │ │ └── authentication/ │ │ ├── forget-password/ │ │ │ ├── loading.js │ │ │ └── page.js │ │ ├── layout.js │ │ ├── sign-in/ │ │ │ └── page.js │ │ └── sign-up/ │ │ └── page.js │ ├── (dashboard)/ │ │ ├── changelog/ │ │ │ └── page.js │ │ ├── components/ │ │ │ ├── accordions/ │ │ │ │ └── page.js │ │ │ ├── alerts/ │ │ │ │ └── page.js │ │ │ ├── badges/ │ │ │ │ └── page.js │ │ │ ├── breadcrumbs/ │ │ │ │ └── page.js │ │ │ ├── button-group/ │ │ │ │ └── page.js │ │ │ ├── buttons/ │ │ │ │ └── page.js │ │ │ ├── cards/ │ │ │ │ └── page.js │ │ │ ├── carousels/ │ │ │ │ └── page.js │ │ │ ├── close-button/ │ │ │ │ └── page.js │ │ │ ├── collapse/ │ │ │ │ └── page.js │ │ │ ├── dropdowns/ │ │ │ │ └── page.js │ │ │ ├── list-group/ │ │ │ │ └── page.js │ │ │ ├── modal/ │ │ │ │ └── page.js │ │ │ ├── navbar/ │ │ │ │ └── page.js │ │ │ ├── navs/ │ │ │ │ └── page.js │ │ │ ├── offcanvas/ │ │ │ │ └── page.js │ │ │ ├── overlays/ │ │ │ │ └── page.js │ │ │ ├── pagination/ │ │ │ │ └── page.js │ │ │ ├── popovers/ │ │ │ │ └── page.js │ │ │ ├── progress/ │ │ │ │ └── page.js │ │ │ ├── spinners/ │ │ │ │ └── page.js │ │ │ ├── tables/ │ │ │ │ └── page.js │ │ │ ├── toasts/ │ │ │ │ └── page.js │ │ │ └── tooltips/ │ │ │ └── page.js │ │ ├── documentation/ │ │ │ └── page.js │ │ ├── layout-vertical/ │ │ │ └── page.js │ │ ├── layout.js │ │ ├── page.js │ │ └── pages/ │ │ ├── api-demo/ │ │ │ ├── ServerSideData.js │ │ │ └── page.js │ │ ├── billing/ │ │ │ └── page.js │ │ ├── pricing/ │ │ │ └── page.js │ │ ├── profile/ │ │ │ └── page.js │ │ └── settings/ │ │ └── page.js │ ├── layout.js │ └── not-found.js ├── components/ │ ├── CopyToClipboardButton.js │ └── bootstrap/ │ └── DotBadge.js ├── data/ │ ├── Notification.js │ ├── code/ │ │ ├── AccordionCode.js │ │ ├── AlertsCode.js │ │ ├── BadgesCode.js │ │ ├── BreadcrumbCode.js │ │ ├── ButtonGroupCode.js │ │ ├── ButtonsCode.js │ │ ├── CardsCode.js │ │ ├── CarouselsCode.js │ │ ├── CloseCode.js │ │ ├── CollapsesCode.js │ │ ├── DropdownsCode.js │ │ ├── ListgroupsCode.js │ │ ├── ModalsCode.js │ │ ├── NavbarsCode.js │ │ ├── NavsCode.js │ │ ├── OffcanvasCode.js │ │ ├── OverlaysCode.js │ │ ├── PaginationsCode.js │ │ ├── PopoversCode.js │ │ ├── ProgressCode.js │ │ ├── SpinnersCode.js │ │ ├── TablesCode.js │ │ ├── ToastsCode.js │ │ └── TooltipsCode.js │ ├── dashboard/ │ │ ├── ActiveProjectsData.js │ │ ├── ProjectsStatsData.js │ │ └── TeamsData.js │ ├── pricing/ │ │ ├── FAQsData.js │ │ ├── FeaturesData.js │ │ └── PricingPlansData.js │ └── profile/ │ └── ProjectsContributionsData.js ├── hooks/ │ └── useMounted.js ├── jsconfig.json ├── layouts/ │ ├── QuickMenu.js │ └── navbars/ │ ├── NavbarTop.js │ └── NavbarVertical.js ├── next.config.js ├── package.json ├── public/ │ └── fonts/ │ └── feather-icons/ │ └── feather.css ├── routes/ │ └── DashboardRoutes.js ├── styles/ │ ├── _user-variables.scss │ ├── _user.scss │ ├── theme/ │ │ ├── _theme.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── components/ │ │ │ ├── _avatar.scss │ │ │ ├── _badge.scss │ │ │ ├── _button.scss │ │ │ ├── _card.scss │ │ │ ├── _docs.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _layout.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar-vertical.scss │ │ │ ├── _navbar.scss │ │ │ ├── _reboot.scss │ │ │ ├── _scrollspy.scss │ │ │ ├── _sidenav.scss │ │ │ ├── _social-button.scss │ │ │ └── _table.scss │ │ ├── utilities/ │ │ │ ├── _background.scss │ │ │ ├── _border.scss │ │ │ ├── _icon-shape.scss │ │ │ ├── _position.scss │ │ │ ├── _shadows.scss │ │ │ └── _text.scss │ │ └── vendor/ │ │ ├── apexChart/ │ │ │ └── _apexchart.scss │ │ └── prismJs/ │ │ └── _prism.scss │ └── theme.scss ├── sub-components/ │ ├── billing/ │ │ ├── BillingAddress.js │ │ └── CurrentPlan.js │ ├── changelog/ │ │ ├── Version_01_00_00.js │ │ ├── Version_01_01_00.js │ │ └── Version_01_01_01.js │ ├── dashboard/ │ │ ├── ActiveProjects.js │ │ ├── TasksPerformance.js │ │ └── Teams.js │ ├── index.js │ ├── profile/ │ │ ├── AboutMe.js │ │ ├── ActivityFeed.js │ │ ├── MyTeam.js │ │ ├── ProfileHeader.js │ │ ├── ProjectsContributions.js │ │ └── RecentFromBlog.js │ └── settings/ │ ├── DeleteAccount.js │ ├── EmailSetting.js │ ├── GeneralSetting.js │ ├── Notifications.js │ └── Preferences.js └── widgets/ ├── PageHeading.js ├── cards/ │ └── PricingCard.js ├── dropfiles/ │ └── DropFiles.js ├── features/ │ └── FeatureLeftTopIcon.js ├── form-select/ │ └── FormSelect.js ├── highlight-code/ │ └── HighlightCode.js ├── index.js └── stats/ └── StatRightTopIcon.js