├── README.md ├── landingpage ├── assets │ └── plugins │ │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.min.js │ │ ├── jquery │ │ └── dist │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ │ └── popper.js │ │ └── dist │ │ ├── esm │ │ ├── popper-utils.min.js │ │ └── popper.min.js │ │ ├── popper-utils.min.js │ │ ├── popper.min.js │ │ └── umd │ │ ├── popper-utils.min.js │ │ └── popper.min.js ├── dist │ ├── css │ │ ├── icons │ │ │ └── material-design-iconic-font │ │ │ │ ├── css │ │ │ │ ├── material-design-iconic-font.css │ │ │ │ ├── material-design-iconic-font.min.css │ │ │ │ └── materialdesignicons.min.css │ │ │ │ └── fonts │ │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ │ ├── Material-Design-Iconic-Font.woff2 │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ └── style.css │ └── scss │ │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ ├── custom.scss │ │ ├── responsive.scss │ │ ├── style.scss │ │ └── variable.scss └── index.html └── package ├── .gitignore ├── .npmrc ├── README.md ├── app.vue ├── assets └── scss │ ├── _override.scss │ ├── _variables.scss │ ├── components │ ├── _VAlert.scss │ ├── _VButtons.scss │ ├── _VCard.scss │ ├── _VCarousel.scss │ ├── _VInput.scss │ ├── _VNavigationDrawer.scss │ ├── _VShadow.scss │ └── _VTextField.scss │ ├── layout │ ├── _container.scss │ ├── _sidebar.scss │ └── _topbar.scss │ └── style.scss ├── components ├── Layout │ ├── header │ │ └── index.vue │ ├── logo │ │ ├── Logo.vue │ │ ├── LogoIcon.vue │ │ ├── LogoLight.vue │ │ └── LogoLightIcon.vue │ └── sidebar │ │ ├── Buynow │ │ └── index.vue │ │ ├── Icon.vue │ │ ├── NavGroup │ │ └── index.vue │ │ ├── NavItem │ │ └── index.vue │ │ ├── index.vue │ │ └── sidebarItems.ts ├── dashboard │ ├── BlogCard.vue │ ├── TheActivityTimeline.vue │ ├── TheMyContacts.vue │ ├── TheProfileCard.vue │ ├── TheSalesOverview.vue │ └── TimelineView.vue ├── shared │ ├── UiChildCard.vue │ └── UiParentCard.vue └── ui-components │ ├── alert │ ├── Basic.vue │ ├── Closable.vue │ └── Filled.vue │ ├── button │ ├── BaseButtons.vue │ ├── ColorsButtons.vue │ ├── IconColorSizes.vue │ ├── OutlinedButtons.vue │ ├── SizeButtons.vue │ └── TextButtons.vue │ └── cards │ ├── CardsContentWrap.vue │ ├── CardsMedia.vue │ ├── CardsProps.vue │ ├── CardsSlots.vue │ ├── CardsTwitter.vue │ └── CardsWeather.vue ├── error.vue ├── layouts ├── blank.vue └── default.vue ├── nuxt.config.ts ├── package.json ├── pages ├── index.vue └── ui-components │ ├── Alerts.vue │ ├── Buttons.vue │ ├── Cards.vue │ ├── Curousel.vue │ └── Tabels.vue ├── plugins └── vuetify.ts ├── public ├── favicon.ico └── images │ ├── backgrounds │ ├── bg-1.jpg │ ├── bg-2.jpg │ ├── errorimg.svg │ ├── login-register.jpg │ └── u5.jpg │ ├── big │ ├── blog-bg.jpg │ ├── img1.jpg │ ├── img2.jpg │ ├── img3.jpg │ └── img4.jpg │ ├── logos │ ├── dark-logo-icon.svg │ └── dark-logo-text.svg │ ├── products │ ├── empty-shopping-cart.svg │ └── payment.svg │ ├── profile │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── businessmen.png │ ├── user-1.jpg │ ├── user-10.jpg │ ├── user-2.jpg │ ├── user-3.jpg │ ├── user-4.jpg │ ├── user-5.jpg │ ├── user-6.jpg │ ├── user-7.jpg │ ├── user-8.jpg │ ├── user-9.jpg │ └── user2.jpg │ └── svgs │ └── sidebar-buynow-bg.svg ├── starter ├── .eslintrc ├── .gitignore ├── .npmrc ├── .prettierrc ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── robots.txt └── src │ ├── App.js │ ├── assets │ ├── images │ │ ├── background │ │ │ ├── error-bg.jpg │ │ │ └── icons2.jpg │ │ ├── bg │ │ │ ├── bg1.jpg │ │ │ ├── bg2.jpg │ │ │ ├── bg3.jpg │ │ │ └── bg4.jpg │ │ ├── logos │ │ │ ├── xtreme-dark-icon.svg │ │ │ ├── xtreme-dark-text.svg │ │ │ ├── xtreme-white-icon.svg │ │ │ └── xtreme-white-text.svg │ │ └── users │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ ├── user4.jpg │ │ │ └── user5.jpg │ └── scss │ │ ├── _darkvariables.scss │ │ ├── _variables.scss │ │ ├── layout │ │ ├── _container.scss │ │ ├── _customizer.scss │ │ ├── _sidebar.scss │ │ ├── _topbar.scss │ │ └── rtl │ │ │ ├── _rtl-components.scss │ │ │ ├── _rtl-spacing.scss │ │ │ └── _rtl.scss │ │ ├── style.scss │ │ └── styledark.scss │ ├── components │ ├── ComponentCard.js │ └── dashboard │ │ ├── Blog.js │ │ ├── Feeds.js │ │ ├── ProjectTable.js │ │ ├── SalesChart.js │ │ └── TopCards.js │ ├── index.js │ ├── layouts │ ├── BlankLayout.js │ ├── FullLayout.js │ ├── breadcrumbs │ │ └── BreadCrumbs.js │ ├── customizer │ │ ├── Customizer.js │ │ └── data.js │ ├── header │ │ ├── Header.js │ │ ├── HorizontalHeader.js │ │ ├── MessageDD.js │ │ ├── NotificationDD.js │ │ └── ProfileDD.js │ ├── loader │ │ ├── Loadable.js │ │ ├── Loader.js │ │ └── loader.scss │ ├── logo │ │ ├── HorizontalLogo.js │ │ └── Logo.js │ ├── sidebars │ │ ├── horizontal │ │ │ ├── HorizontalSidebar.js │ │ │ ├── NavSingleItem.js │ │ │ └── NavSubItem.js │ │ ├── sidebardata │ │ │ └── SidebarData.js │ │ └── vertical │ │ │ ├── NavItemContainer.js │ │ │ ├── NavSubMenu.js │ │ │ └── Sidebar.js │ └── theme │ │ ├── DarkTheme.js │ │ ├── LightTheme.js │ │ └── ThemeSelector.js │ ├── reportWebVitals.js │ ├── routes │ └── Router.js │ ├── setupTests.js │ ├── store │ ├── Store.js │ └── customizer │ │ └── CustomizerSlice.js │ └── views │ ├── About.js │ ├── Starter.js │ ├── auth │ ├── Error.js │ └── Error.scss │ └── ui │ ├── Alerts.js │ ├── Badges.js │ ├── Breadcrumbs.js │ ├── Buttons.js │ ├── Cards.js │ ├── Forms.js │ ├── Grid.js │ └── Tables.js ├── theme └── LightTheme.ts ├── tsconfig.json └── types └── themeTypes └── ThemeType.ts /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrappixel/adminpro-nuxtjs-free/83fa2d315c549134e94d06fcb9cd825282024d59/landingpage/dist/css/icons/material-design-iconic-font/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Base styles 3 | // 4 | 5 | .alert { 6 | position: relative; 7 | padding: $alert-padding-y $alert-padding-x; 8 | margin-bottom: $alert-margin-bottom; 9 | border: $alert-border-width solid transparent; 10 | @include border-radius($alert-border-radius); 11 | } 12 | 13 | // Headings for larger alerts 14 | .alert-heading { 15 | // Specified to prevent conflicts of changing $headings-color 16 | color: inherit; 17 | } 18 | 19 | // Provide class for links that match alerts 20 | .alert-link { 21 | font-weight: $alert-link-font-weight; 22 | } 23 | 24 | 25 | // Dismissible alerts 26 | // 27 | // Expand the right padding and account for the close button's positioning. 28 | 29 | .alert-dismissible { 30 | padding-right: ($close-font-size + $alert-padding-x * 2); 31 | 32 | // Adjust close link position 33 | .close { 34 | position: absolute; 35 | top: 0; 36 | right: 0; 37 | padding: $alert-padding-y $alert-padding-x; 38 | color: inherit; 39 | } 40 | } 41 | 42 | 43 | // Alternate styles 44 | // 45 | // Generate contextual modifier classes for colorizing the alert. 46 | 47 | @each $color, $value in $theme-colors { 48 | .alert-#{$color} { 49 | @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level)); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- 1 | // Base class 2 | // 3 | // Requires one of the contextual, color modifier classes for `color` and 4 | // `background-color`. 5 | 6 | .badge { 7 | display: inline-block; 8 | padding: $badge-padding-y $badge-padding-x; 9 | font-size: $badge-font-size; 10 | font-weight: $badge-font-weight; 11 | line-height: 1; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: baseline; 15 | @include border-radius($badge-border-radius); 16 | 17 | // Empty badges collapse automatically 18 | &:empty { 19 | display: none; 20 | } 21 | } 22 | 23 | // Quick fix for badges in buttons 24 | .btn .badge { 25 | position: relative; 26 | top: -1px; 27 | } 28 | 29 | // Pill badges 30 | // 31 | // Make them extra rounded with a modifier to replace v3's badges. 32 | 33 | .badge-pill { 34 | padding-right: $badge-pill-padding-x; 35 | padding-left: $badge-pill-padding-x; 36 | @include border-radius($badge-pill-border-radius); 37 | } 38 | 39 | // Colors 40 | // 41 | // Contextual variations (linked badges get darker on :hover). 42 | 43 | @each $color, $value in $theme-colors { 44 | .badge-#{$color} { 45 | @include badge-variant($value); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /landingpage/dist/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | display: flex; 3 | flex-wrap: wrap; 4 | padding: $breadcrumb-padding-y $breadcrumb-padding-x; 5 | margin-bottom: $breadcrumb-margin-bottom; 6 | list-style: none; 7 | background-color: $breadcrumb-bg; 8 | @include border-radius($breadcrumb-border-radius); 9 | } 10 | 11 | .breadcrumb-item { 12 | // The separator between breadcrumbs (by default, a forward-slash: "/") 13 | + .breadcrumb-item { 14 | padding-left: $breadcrumb-item-padding; 15 | 16 | &::before { 17 | display: inline-block; // Suppress underlining of the separator in modern browsers 18 | padding-right: $breadcrumb-item-padding; 19 | color: $breadcrumb-divider-color; 20 | content: $breadcrumb-divider; 21 | } 22 | } 23 | 24 | // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built 25 | // without `