├── Procfile ├── src ├── version.ts ├── app │ ├── app.component.scss │ ├── component │ │ ├── design │ │ │ ├── top-svg │ │ │ │ ├── top-svg.component.scss │ │ │ │ ├── top-svg.component.ts │ │ │ │ ├── top-svg.component.spec.ts │ │ │ │ └── top-svg.component.html │ │ │ └── bottom-svg │ │ │ │ ├── bottom-svg.component.scss │ │ │ │ ├── bottom-svg.component.html │ │ │ │ ├── bottom-svg.component.ts │ │ │ │ └── bottom-svg.component.spec.ts │ │ ├── content-loader │ │ │ ├── content-loader.component.scss │ │ │ ├── text-content-loader │ │ │ │ ├── text-content-loader.component.html │ │ │ │ ├── text-content-loader.component.scss │ │ │ │ ├── text-content-loader.component.ts │ │ │ │ └── text-content-loader.component.spec.ts │ │ │ ├── content-loader.component.html │ │ │ ├── image-content-loader │ │ │ │ ├── image-content-loader.component.html │ │ │ │ ├── image-content-loader.component.ts │ │ │ │ ├── image-content-loader.component.scss │ │ │ │ └── image-content-loader.component.spec.ts │ │ │ ├── box-content-loader │ │ │ │ ├── box-content-loader.component.html │ │ │ │ ├── box-content-loader.component.ts │ │ │ │ ├── box-content-loader.component.scss │ │ │ │ └── box-content-loader.component.spec.ts │ │ │ ├── content-loader.component.ts │ │ │ └── content-loader.component.spec.ts │ │ ├── ext-link │ │ │ ├── ext-link.component.html │ │ │ ├── ext-link.component.scss │ │ │ └── ext-link.component.spec.ts │ │ ├── side-content │ │ │ ├── side-content.component.html │ │ │ └── side-content.component.spec.ts │ │ ├── color-chart │ │ │ ├── color-chart.component.ts │ │ │ ├── color-chart.component.html │ │ │ └── color-chart.component.spec.ts │ │ ├── nav │ │ │ ├── landing │ │ │ │ ├── landing-layout-bottom-nav │ │ │ │ │ ├── landing-layout-bottom-nav.component.scss │ │ │ │ │ ├── landing-layout-bottom-nav.component.spec.ts │ │ │ │ │ └── landing-layout-bottom-nav.component.html │ │ │ │ └── landing-layout-top-nav │ │ │ │ │ └── landing-layout-top-nav.component.spec.ts │ │ │ ├── dashboard │ │ │ │ ├── dashboard-layout-bottom-nav │ │ │ │ │ ├── dashboard-layout-bottom-nav.component.scss │ │ │ │ │ └── dashboard-layout-bottom-nav.component.spec.ts │ │ │ │ ├── dashboard-layout-top-nav │ │ │ │ │ ├── dashboard-layout-top-nav.component.html │ │ │ │ │ └── dashboard-layout-top-nav.component.spec.ts │ │ │ │ └── dashboard-layout-side-nav │ │ │ │ │ └── dashboard-layout-side-nav.component.spec.ts │ │ │ └── footer │ │ │ │ └── footer.component.spec.ts │ │ ├── popup │ │ │ └── cookie-popup │ │ │ │ ├── cookie-popup.component.html │ │ │ │ ├── cookie-popup.component.ts │ │ │ │ └── cookie-popup.component.spec.ts │ │ ├── rate-bar │ │ │ ├── rate-bar.component.html │ │ │ ├── rate-bar.component.scss │ │ │ └── rate-bar.component.spec.ts │ │ ├── card │ │ │ ├── tech-stack-card │ │ │ │ ├── tech-stack-card.component.html │ │ │ │ ├── tech-stack-card.component.ts │ │ │ │ └── tech-stack-card.component.spec.ts │ │ │ ├── activity-card │ │ │ │ ├── activity-card.component.ts │ │ │ │ ├── activity-card.component.spec.ts │ │ │ │ └── activity-card.component.html │ │ │ ├── timeline-card │ │ │ │ ├── timeline-card.component.ts │ │ │ │ ├── step-timeline-card │ │ │ │ │ ├── step-timeline-card.component.ts │ │ │ │ │ ├── step-timeline-card.component.html │ │ │ │ │ └── step-timeline-card.component.spec.ts │ │ │ │ └── timeline-card.component.spec.ts │ │ │ ├── feature-card │ │ │ │ ├── feature-card.component.html │ │ │ │ ├── feature-card.component.ts │ │ │ │ └── feature-card.component.spec.ts │ │ │ ├── contact-information-card │ │ │ │ ├── contact-information-card.component.ts │ │ │ │ └── contact-information-card.component.spec.ts │ │ │ ├── blog-holder-card │ │ │ │ ├── blog-holder-card.component.ts │ │ │ │ └── blog-holder-card.component.spec.ts │ │ │ ├── doc-card │ │ │ │ ├── doc-card.component.ts │ │ │ │ └── doc-card.component.spec.ts │ │ │ ├── doc-holder-card │ │ │ │ ├── doc-holder-cardcomponent.ts │ │ │ │ └── doc-holder-card.component.spec.ts │ │ │ ├── blog-card │ │ │ │ ├── blog-card.component.ts │ │ │ │ └── blog-card.component.spec.ts │ │ │ ├── policy-card │ │ │ │ ├── policy-card.component.ts │ │ │ │ └── policy-card.component.spec.ts │ │ │ ├── asset-card │ │ │ │ ├── asset-card.component.spec.ts │ │ │ │ └── asset-card.component.html │ │ │ ├── status-card │ │ │ │ └── status-card.component.spec.ts │ │ │ ├── pricing-card │ │ │ │ └── pricing-card.component.spec.ts │ │ │ ├── profile-card │ │ │ │ └── profile-card.component.spec.ts │ │ │ ├── employee-card │ │ │ │ └── employee-card.component.spec.ts │ │ │ ├── testimonial-card │ │ │ │ └── testimonial-card.component.spec.ts │ │ │ ├── presentation-card │ │ │ │ └── presentation-card.component.spec.ts │ │ │ ├── analytics-event-card │ │ │ │ └── analytics-event-card.component.spec.ts │ │ │ └── activity-history-card │ │ │ │ ├── activity-history-card.component.spec.ts │ │ │ │ └── activity-history-card.component.html │ │ ├── search │ │ │ ├── search.component.html │ │ │ └── search.component.spec.ts │ │ ├── swiper │ │ │ ├── business-partner-swiper │ │ │ │ ├── business-partner-swiper.component.html │ │ │ │ └── business-partner-swiper.component.spec.ts │ │ │ ├── presentation-swiper │ │ │ │ ├── presentation-swiper.component.html │ │ │ │ ├── presentation-swiper.component.ts │ │ │ │ └── presentation-swiper.component.spec.ts │ │ │ └── screenshot-swiper │ │ │ │ ├── screenshot-swiper.component.html │ │ │ │ ├── screenshot-swiper.component.spec.ts │ │ │ │ └── screenshot-swiper.component.ts │ │ ├── price-plan │ │ │ ├── price-plan.component.spec.ts │ │ │ └── price-plan.component.ts │ │ ├── product-represantation │ │ │ └── product-presentation.component.spec.ts │ │ └── settings-dropdown-menu │ │ │ └── settings-dropdown-menu.component.spec.ts │ ├── model │ │ ├── sms │ │ │ └── sms.model.ts │ │ ├── mail │ │ │ └── mail.model.ts │ │ ├── oauth │ │ │ └── oauth.model.ts │ │ ├── file-storage │ │ │ └── file-storage.model.ts │ │ ├── image │ │ │ └── image.model.ts │ │ ├── video │ │ │ └── image.model.ts │ │ ├── analytics │ │ │ └── analytics.model.ts │ │ ├── auth │ │ │ └── auth-token.model.ts │ │ ├── activity │ │ │ └── activity.model.ts │ │ ├── contact-us │ │ │ └── contact-us.model.ts │ │ ├── partner │ │ │ └── partner.model.ts │ │ ├── feature │ │ │ └── feature.model.ts │ │ ├── timeline │ │ │ ├── step-timeline.model.ts │ │ │ └── timeline.model.ts │ │ ├── social │ │ │ └── social.model.ts │ │ ├── seo │ │ │ └── seo.model.ts │ │ ├── payment │ │ │ └── payment.model.ts │ │ ├── doc │ │ │ └── doc.model.ts │ │ ├── user │ │ │ └── user.model.ts │ │ ├── blog │ │ │ └── blog.model.ts │ │ ├── employee │ │ │ └── employee.model.ts │ │ ├── testimonial │ │ │ └── testimonial.model.ts │ │ ├── pricing │ │ │ └── pricing.model.ts │ │ ├── website │ │ │ └── website.model.ts │ │ └── event │ │ │ └── event.model.ts │ ├── data │ │ ├── profile │ │ │ └── profile.data.ts │ │ ├── contact-info │ │ │ └── contact-info.data.ts │ │ ├── http │ │ │ └── http.data.ts │ │ ├── information │ │ │ └── information.data.ts │ │ ├── developers │ │ │ └── developers.data.ts │ │ ├── ribbon │ │ │ └── ribbon.data.ts │ │ ├── theme │ │ │ └── theme.data.ts │ │ ├── resources │ │ │ └── resources.data.ts │ │ ├── status │ │ │ └── status.data.ts │ │ ├── contact-us │ │ │ └── contact-us.data.ts │ │ ├── blog │ │ │ └── blog.data.ts │ │ ├── company │ │ │ └── company.data.ts │ │ ├── doc │ │ │ └── doc.data.ts │ │ └── premium-products │ │ │ └── premium-product.data.ts │ ├── page │ │ ├── landing-layout │ │ │ ├── status-page │ │ │ │ ├── status-page.component.scss │ │ │ │ ├── status-page.component.html │ │ │ │ └── status-page.component.spec.ts │ │ │ ├── form-pages │ │ │ │ ├── login-page │ │ │ │ │ ├── login-page.component.scss │ │ │ │ │ └── login-page.component.spec.ts │ │ │ │ ├── sign-up-page │ │ │ │ │ ├── sign-up-page.component.scss │ │ │ │ │ └── sign-up-page.component.spec.ts │ │ │ │ ├── forget-password-page │ │ │ │ │ ├── forget-password-page.component.scss │ │ │ │ │ └── forget-password-page.component.spec.ts │ │ │ │ ├── reset-password-page │ │ │ │ │ ├── reset-password-page.component.scss │ │ │ │ │ └── reset-password-page.component.spec.ts │ │ │ │ └── two-factor-authentication-page │ │ │ │ │ └── two-factor-authentication-page.component.scss │ │ │ ├── raw-content-pages │ │ │ │ ├── not-found-page │ │ │ │ │ ├── not-found-page.component.scss │ │ │ │ │ ├── not-found-page.component.html │ │ │ │ │ ├── not-found-page.component.spec.ts │ │ │ │ │ └── not-found-page.component.ts │ │ │ │ ├── maintenance-page │ │ │ │ │ ├── maintenance-page.component.scss │ │ │ │ │ ├── maintenance-page.component.html │ │ │ │ │ └── maintenance-page.component.spec.ts │ │ │ │ ├── verify-account-page │ │ │ │ │ ├── verify-account-page.component.scss │ │ │ │ │ └── verify-account-page.component.spec.ts │ │ │ │ └── sign-up-success-page │ │ │ │ │ ├── sign-up-success-page.component.scss │ │ │ │ │ ├── sign-up-success-page.component.html │ │ │ │ │ └── sign-up-success-page.component.spec.ts │ │ │ ├── customers-page │ │ │ │ ├── customers-page.component.scss │ │ │ │ ├── customers-page.component.html │ │ │ │ ├── customers-page.component.ts │ │ │ │ └── customers-page.component.spec.ts │ │ │ ├── policy-pages │ │ │ │ ├── terms-page │ │ │ │ │ ├── terms-page.component.scss │ │ │ │ │ ├── terms-page.component.ts │ │ │ │ │ └── terms-page.component.spec.ts │ │ │ │ ├── cookie-policy-page │ │ │ │ │ ├── cookie-policy-page.component.scss │ │ │ │ │ ├── cookie-policy-page.component.ts │ │ │ │ │ └── cookie-policy-page.component.spec.ts │ │ │ │ └── privacy-policy-page │ │ │ │ │ ├── privacy-policy-page.component.scss │ │ │ │ │ ├── privacy-policy-page.component.ts │ │ │ │ │ └── privacy-policy-page.component.spec.ts │ │ │ ├── docs-page │ │ │ │ ├── docs-content-page │ │ │ │ │ ├── docs-content-page.component.scss │ │ │ │ │ ├── docs-content-page.component.html │ │ │ │ │ └── docs-content-page.component.spec.ts │ │ │ │ ├── docs-page.component.html │ │ │ │ ├── docs-page.component.ts │ │ │ │ ├── docs-page.component.spec.ts │ │ │ │ └── docs-page.component.scss │ │ │ ├── blog-page │ │ │ │ ├── blog-content-page │ │ │ │ │ ├── blog-content-page.component.scss │ │ │ │ │ ├── blog-content-page.component.html │ │ │ │ │ └── blog-content-page.component.spec.ts │ │ │ │ ├── blog-page.component.html │ │ │ │ ├── blog-page.component.ts │ │ │ │ ├── blog-page.component.spec.ts │ │ │ │ └── blog-page.component.scss │ │ │ ├── partners-page │ │ │ │ ├── partners-page.component.scss │ │ │ │ ├── partners-page.component.html │ │ │ │ ├── partners-page.component.spec.ts │ │ │ │ └── partners-page.component.ts │ │ │ ├── pricing-page │ │ │ │ ├── pricing-page.component.html │ │ │ │ └── pricing-page.component.spec.ts │ │ │ ├── home-page │ │ │ │ └── home-page.component.spec.ts │ │ │ ├── product-page │ │ │ │ └── product-page.component.spec.ts │ │ │ ├── sitemap-page │ │ │ │ └── sitemap-page.component.spec.ts │ │ │ ├── about-us-page │ │ │ │ └── about-us-page.component.spec.ts │ │ │ ├── landing-layout.component.html │ │ │ ├── landing-layout.component.spec.ts │ │ │ ├── branding-page │ │ │ │ └── branding-page.component.spec.ts │ │ │ └── contact-us-page │ │ │ │ └── contact-us-page.component.spec.ts │ │ ├── splash-layout │ │ │ ├── splash-layout.component.html │ │ │ ├── splash-layout.component.ts │ │ │ ├── splash-layout.component.scss │ │ │ ├── callback-page │ │ │ │ ├── callback-page.component.html │ │ │ │ └── callback-page.component.spec.ts │ │ │ ├── splash-layout.component.spec.ts │ │ │ └── external-redirect-page │ │ │ │ └── external-redirect-page.component.spec.ts │ │ ├── dashboard-layout │ │ │ ├── dashboard-page │ │ │ │ ├── dashboard-page.component.html │ │ │ │ └── dashboard-page.component.spec.ts │ │ │ ├── my-profile-page │ │ │ │ ├── my-profile-page.component.html │ │ │ │ ├── my-profile-page.component.scss │ │ │ │ └── my-profile-page.component.spec.ts │ │ │ ├── premium-page │ │ │ │ ├── premium-page.component.scss │ │ │ │ └── premium-page.component.spec.ts │ │ │ ├── dashboard-layout.component.html │ │ │ ├── dashboard-layout.component.spec.ts │ │ │ ├── notifications-page │ │ │ │ ├── notifications-page.component.spec.ts │ │ │ │ └── notifications-page.component.ts │ │ │ └── dashboard-layout.component.ts │ │ └── settings-layout │ │ │ ├── settings-layout.component.html │ │ │ ├── edit-security │ │ │ └── edit-security.component.spec.ts │ │ │ ├── settings-layout.component.spec.ts │ │ │ ├── edit-theme-page │ │ │ └── edit-theme-page.component.spec.ts │ │ │ ├── edit-profile-page │ │ │ └── edit-profile-page.component.spec.ts │ │ │ ├── settings-layout.component.ts │ │ │ └── settings-layout.component.scss │ ├── app.component.html │ ├── service │ │ ├── in-memory-data-service │ │ │ ├── in-memory-data.service.ts │ │ │ └── in-memory-data-service.spec.ts │ │ ├── loading │ │ │ ├── loading.service.ts │ │ │ └── loading.service.spec.ts │ │ ├── seo │ │ │ └── seo.service.spec.ts │ │ ├── util │ │ │ └── util.service.spec.ts │ │ ├── mail │ │ │ ├── mail.service.spec.ts │ │ │ └── mail.service.ts │ │ ├── theme │ │ │ └── theme.service.spec.ts │ │ ├── toast │ │ │ └── toast.service.spec.ts │ │ ├── socket │ │ │ └── socket.service.spec.ts │ │ ├── payment │ │ │ └── payment.service.spec.ts │ │ ├── product │ │ │ └── product.service.spec.ts │ │ ├── analytics │ │ │ └── analytics.service.spec.ts │ │ ├── monitoring │ │ │ └── monitoring.service.spec.ts │ │ ├── file-storage │ │ │ └── file-storage.service.spec.ts │ │ ├── information │ │ │ └── information.service.spec.ts │ │ ├── notification │ │ │ └── notification.service.spec.ts │ │ ├── auth │ │ │ └── authentication.service.spec.ts │ │ ├── browser-locale │ │ │ ├── browser-locale.service.spec.ts │ │ │ └── browser-locale.service.ts │ │ ├── business-logic │ │ │ └── business-logic.service.spec.ts │ │ ├── two-factor-code │ │ │ └── two-factor-code.service.spec.ts │ │ └── infinite-scrolling │ │ │ └── infinite-scrolling.service.spec.ts │ ├── guard │ │ ├── auth │ │ │ └── auth.guard.spec.ts │ │ └── public-profile │ │ │ └── public-profile.guard.spec.ts │ └── interceptor │ │ ├── request │ │ └── request.interceptor.spec.ts │ │ ├── response │ │ └── response.interceptor.spec.ts │ │ └── navigation │ │ └── navigation.interceptor.spec.ts ├── assets │ ├── common │ │ ├── globe.png │ │ ├── activity.png │ │ └── profile-img.png │ ├── favicons │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ ├── apple-touch-icon.png │ │ ├── maskable_icon_x512.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ └── browserconfig.xml │ └── logo │ │ └── brand-logo.png ├── styles │ ├── theme │ │ ├── design │ │ │ ├── design.theme.scss │ │ │ ├── sharp.design.theme.scss │ │ │ ├── leaf.design.theme.scss │ │ │ ├── round.design.theme.scss │ │ │ └── counter-borders.design.theme.scss │ │ └── theme.scss │ ├── logo │ │ └── logo.scss │ └── styles.scss ├── messages-generator.ts ├── main.ts ├── test.ts ├── manifest.webmanifest └── environments │ └── environment-init.ts ├── .github ├── lighthouserc.yml ├── pr-labeler.yml └── workflows │ ├── on-push-tags.yml │ ├── issue-assigned-workflows.yml │ ├── pr-labeled-at-develop-workflows.yml │ ├── pr-open-to-demos.yml │ └── issue-open-workflows.yml ├── seo └── robots.txt ├── .prettierrc.js ├── SECURITY.md ├── env.sh ├── .vscode └── settings.json ├── e2e ├── tsconfig.json ├── src │ ├── app.po.ts │ └── app.e2e-spec.ts └── protractor.conf.js ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json ├── .run ├── update.run.xml ├── install.run.xml ├── start.run.xml ├── sitemap.run.xml ├── buildProd.run.xml ├── outdated.run.xml ├── startLocal.run.xml ├── startStaging.run.xml ├── updateMessages.run.xml ├── buildLocalToStagingApi.run.xml ├── startLocalToStagingApi.run.xml ├── buildLocal.run.xml ├── buildStaging.run.xml └── env.run.xml ├── heroku.sh ├── browserslist ├── tsconfig.json ├── app.json ├── ngsw-config.json └── .gitignore /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js 2 | -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- 1 | export const version = '5.0.1'; 2 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | /* Intentionally blank */ 2 | -------------------------------------------------------------------------------- /src/app/component/design/top-svg/top-svg.component.scss: -------------------------------------------------------------------------------- 1 | /* Intentionally Blank */ 2 | -------------------------------------------------------------------------------- /src/app/model/sms/sms.model.ts: -------------------------------------------------------------------------------- 1 | export interface SmsModel { 2 | tag: string; 3 | } 4 | -------------------------------------------------------------------------------- /.github/lighthouserc.yml: -------------------------------------------------------------------------------- 1 | ci: 2 | collect: 3 | settings: 4 | preset: "desktop" 5 | -------------------------------------------------------------------------------- /src/app/component/design/bottom-svg/bottom-svg.component.scss: -------------------------------------------------------------------------------- 1 | /* Intentionally Blank */ 2 | -------------------------------------------------------------------------------- /src/app/model/mail/mail.model.ts: -------------------------------------------------------------------------------- 1 | export interface MailModel { 2 | tag: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/model/oauth/oauth.model.ts: -------------------------------------------------------------------------------- 1 | export interface OauthModel { 2 | tag: string; 3 | } 4 | -------------------------------------------------------------------------------- /seo/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | 4 | Sitemap: https://opentemplatehub.com/sitemap.xml 5 | -------------------------------------------------------------------------------- /src/app/data/profile/profile.data.ts: -------------------------------------------------------------------------------- 1 | export const PROFILE_IMG = './assets/common/profile-img.png'; 2 | -------------------------------------------------------------------------------- /src/app/component/content-loader/content-loader.component.scss: -------------------------------------------------------------------------------- 1 | .loader { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/status-page/status-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/app/model/file-storage/file-storage.model.ts: -------------------------------------------------------------------------------- 1 | export interface FileStorageModel { 2 | tag: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/model/image/image.model.ts: -------------------------------------------------------------------------------- 1 | export interface Image { 2 | src: string; 3 | description: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/model/video/image.model.ts: -------------------------------------------------------------------------------- 1 | export interface Video { 2 | url: string; 3 | description: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/form-pages/login-page/login-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/app/model/analytics/analytics.model.ts: -------------------------------------------------------------------------------- 1 | export interface AnalyticsModel { 2 | tag: string; 3 | id: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/form-pages/sign-up-page/sign-up-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/assets/common/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/common/globe.png -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleQuote: true, 3 | bracketSpacing: true, 4 | bracketSameLine: true 5 | }; 6 | -------------------------------------------------------------------------------- /src/app/model/auth/auth-token.model.ts: -------------------------------------------------------------------------------- 1 | export interface AuthToken { 2 | accessToken: any; 3 | refreshToken: any; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/raw-content-pages/not-found-page/not-found-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/assets/common/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/common/activity.png -------------------------------------------------------------------------------- /src/assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /src/assets/favicons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/favicons/favicon.png -------------------------------------------------------------------------------- /src/assets/logo/brand-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/logo/brand-logo.png -------------------------------------------------------------------------------- /src/app/model/activity/activity.model.ts: -------------------------------------------------------------------------------- 1 | export interface Activity { 2 | type: string; 3 | date: Date; 4 | payload: any; 5 | } 6 | -------------------------------------------------------------------------------- /src/app/model/contact-us/contact-us.model.ts: -------------------------------------------------------------------------------- 1 | export interface ContactUsFeatures { 2 | title: string; 3 | features: string[]; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/model/partner/partner.model.ts: -------------------------------------------------------------------------------- 1 | export interface Partner { 2 | src: string, 3 | name: string, 4 | website: string 5 | } 6 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/customers-page/customers-page.component.scss: -------------------------------------------------------------------------------- 1 | @use 'node_modules/@open-template-hub/card/styles/card/card'; 2 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/form-pages/forget-password-page/forget-password-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/form-pages/reset-password-page/reset-password-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/raw-content-pages/maintenance-page/maintenance-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/assets/common/profile-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-template-hub/web-ui-template/HEAD/src/assets/common/profile-img.png -------------------------------------------------------------------------------- /src/app/model/feature/feature.model.ts: -------------------------------------------------------------------------------- 1 | export interface Feature { 2 | title: string; 3 | description: string; 4 | icon: string; 5 | } 6 | -------------------------------------------------------------------------------- /src/app/page/landing-layout/raw-content-pages/verify-account-page/verify-account-page.component.scss: -------------------------------------------------------------------------------- 1 | @use '../../landing-layout.component'; 2 | -------------------------------------------------------------------------------- /src/app/page/splash-layout/splash-layout.component.html: -------------------------------------------------------------------------------- 1 |
Less
3 |More
14 |{{ formattedRateNumber }}
8 |{{ tech.description }}
9 |{{ feature.title }}
10 |{{ feature.description }}
15 |{{ num }}
9 |{{ step.text }}
13 |12 | {{error}} 13 |
14 |{{ screenshot.description }}
15 |{{ title }}
11 | 12 | 13 | {{ secondaryText }} 14 | 15 |{{ secondaryText }}
16 | 17 |Recent Activities
8 |{{ timestampToString( event.timestamp ) }}
17 |{{ title }}
7 |