diff --git a/src/components/landing/herowidget.ts b/src/components/landing/herowidget.ts index bb047bf..1f51f67 100644 --- a/src/components/landing/herowidget.ts +++ b/src/components/landing/herowidget.ts @@ -14,7 +14,7 @@ import { ButtonModule } from 'primeng/button';

Eu sem integereget magna fermentum

Sed blandit libero volutpat sed cras. Fames ac turpis egestas integer. Placerat in egestas erat...

- +
Hero Image diff --git a/src/components/landing/pricingwidget.ts b/src/components/landing/pricingwidget.ts index 818cf32..8d652c2 100644 --- a/src/components/landing/pricingwidget.ts +++ b/src/components/landing/pricingwidget.ts @@ -4,118 +4,116 @@ import { ButtonModule } from 'primeng/button'; import { RippleModule } from 'primeng/ripple'; @Component({ - selector: 'pricing-widget', - imports: [DividerModule, ButtonModule, RippleModule], - template: ` -
-
-
Matchless Pricing
- Amet consectetur adipiscing elit... -
+ selector: 'pricing-widget', + imports: [DividerModule, ButtonModule, RippleModule], + template: ` +
+
+
Matchless Pricing
+ Amet consectetur adipiscing elit... +
-
-
-
-
Free
- free -
-
- $0 - per month -
- -
- -
    -
  • - - Responsive Layout -
  • -
  • - - Unlimited Push Messages -
  • -
  • - - 50 Support Ticket -
  • -
  • - - Free Shipping -
  • -
-
-
+
+
+
+
Free
+ free +
+
+ $0 + per month +
+ +
+ +
    +
  • + + Responsive Layout +
  • +
  • + + Unlimited Push Messages +
  • +
  • + + 50 Support Ticket +
  • +
  • + + Free Shipping +
  • +
+
+
-
-
-
Startup
- startup -
-
- $1 - per month -
- -
- -
    -
  • - - Responsive Layout -
  • -
  • - - Unlimited Push Messages -
  • -
  • - - 50 Support Ticket -
  • -
  • - - Free Shipping -
  • -
-
-
+
+
+
Startup
+ startup +
+
+ $1 + per month +
+ +
+ +
    +
  • + + Responsive Layout +
  • +
  • + + Unlimited Push Messages +
  • +
  • + + 50 Support Ticket +
  • +
  • + + Free Shipping +
  • +
+
+
-
-
-
Enterprise
- enterprise -
-
- $5 - per month -
- -
- -
    -
  • - - Responsive Layout -
  • -
  • - - Unlimited Push Messages -
  • -
  • - - 50 Support Ticket -
  • -
  • - - Free Shipping -
  • -
-
-
-
-
- `, +
+
+
Enterprise
+ enterprise +
+
+ $5 + per month +
+ +
+ +
    +
  • + + Responsive Layout +
  • +
  • + + Unlimited Push Messages +
  • +
  • + + 50 Support Ticket +
  • +
  • + + Free Shipping +
  • +
+
+
+
+
+ ` }) -export class PricingWidget { - -} +export class PricingWidget {} diff --git a/src/components/landing/topbarwidget.component.ts b/src/components/landing/topbarwidget.component.ts index bd9122d..67cd0c1 100644 --- a/src/components/landing/topbarwidget.component.ts +++ b/src/components/landing/topbarwidget.component.ts @@ -6,66 +6,62 @@ import { ButtonModule } from 'primeng/button'; import { LayoutService } from '@/src/service/layout.service'; @Component({ - selector: 'topbar-widget', - imports: [RouterModule, StyleClassModule, ButtonModule, RippleModule], - template: ` - - - - - - - - - - SAKAI - + selector: 'topbar-widget', + imports: [RouterModule, StyleClassModule, ButtonModule, RippleModule], + template: ` + + + + + + + + + + SAKAI + + + + - - - - - - `, + ` }) export class TopbarWidget { - - constructor(public router: Router) { } - + constructor(public router: Router) {} } diff --git a/src/routes.ts b/src/routes.ts index 16aa4b9..4b74ff7 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -1,17 +1,22 @@ import { Routes } from '@angular/router'; -import { AppLayout} from '@/src/layout/applayout'; +import { AppLayout } from '@/src/layout/applayout'; import { Documentation } from '@/src/views/pages/documentation'; import { Dashboard } from '@/src/views/dashboard'; +import { Landing } from './views/pages/landing'; +import { Notfound } from './views/pages/notfound'; export const routes: Routes = [ - { path: '', component: AppLayout, + { + path: '', + component: AppLayout, children: [ { path: '', component: Dashboard }, { path: 'uikit', loadChildren: () => import('./views/uikit/uikit.routes') }, { path: 'documentation', component: Documentation }, - { path: 'pages', loadChildren: () => import('./views/pages/pages.routes') }, + { path: 'pages', loadChildren: () => import('./views/pages/pages.routes') } ] }, - {path: 'auth', loadChildren: () => import('./views/pages/auth/auth.routes') }, - + { path: 'landing', component: Landing }, + { path: 'notfound', component: Notfound }, + { path: 'auth', loadChildren: () => import('./views/pages/auth/auth.routes') } ]; diff --git a/src/views/pages/auth/login.ts b/src/views/pages/auth/login.ts index 5326496..a79f491 100644 --- a/src/views/pages/auth/login.ts +++ b/src/views/pages/auth/login.ts @@ -63,7 +63,7 @@ import { FloatingConfigurator } from '@/src/components/floatingconfigurator';
Forgot password? - + diff --git a/src/views/pages/landing.ts b/src/views/pages/landing.ts index 63000f1..353485b 100644 --- a/src/views/pages/landing.ts +++ b/src/views/pages/landing.ts @@ -1,9 +1,9 @@ -import {Component} from '@angular/core'; -import {RouterModule} from '@angular/router'; -import {RippleModule} from 'primeng/ripple'; -import {StyleClassModule} from 'primeng/styleclass'; -import {ButtonModule} from 'primeng/button'; -import {DividerModule} from 'primeng/divider'; +import { Component } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { RippleModule } from 'primeng/ripple'; +import { StyleClassModule } from 'primeng/styleclass'; +import { ButtonModule } from 'primeng/button'; +import { DividerModule } from 'primeng/divider'; import { HeroWidget } from '@/src/components/landing/herowidget'; import { FeaturesWidget } from '@/src/components/landing/featureswidget'; import { HighlightsWidget } from '@/src/components/landing/highlightswidget'; @@ -12,21 +12,19 @@ import { FooterWidget } from '@/src/components/landing/footerwidget'; import { TopbarWidget } from '@/src/components/landing/topbarwidget.component'; @Component({ - standalone: true, - imports: [RouterModule,TopbarWidget, HeroWidget, FeaturesWidget, HighlightsWidget, PricingWidget, FooterWidget, RippleModule, StyleClassModule, ButtonModule, DividerModule], - template:` -
-
-
- -
- - - - - -
-
- `, + standalone: true, + imports: [RouterModule, TopbarWidget, HeroWidget, FeaturesWidget, HighlightsWidget, PricingWidget, FooterWidget, RippleModule, StyleClassModule, ButtonModule, DividerModule], + template: ` +
+
+ + + + + + +
+
+ ` }) export class Landing {} diff --git a/src/views/pages/pages.routes.ts b/src/views/pages/pages.routes.ts index 4bec861..2b7c68f 100644 --- a/src/views/pages/pages.routes.ts +++ b/src/views/pages/pages.routes.ts @@ -1,15 +1,11 @@ import { Routes } from '@angular/router'; import { Documentation } from '@/src/views/pages/documentation'; import { Crud } from '@/src/views/pages/crud'; -import { Landing } from '@/src/views/pages/landing'; import { Empty } from '@/src/views/pages/empty'; -import { Notfound } from '@/src/views/pages/notfound'; export default [ - { path: 'documentation', component: Documentation}, - { path: 'crud', component: Crud}, - { path: 'landing', component: Landing}, - { path: 'empty', component: Empty}, - { path: 'notfound', component: Notfound}, - { path: '**', redirectTo: '/notfound' } + { path: 'documentation', component: Documentation }, + { path: 'crud', component: Crud }, + { path: 'empty', component: Empty }, + { path: '**', redirectTo: '/notfound' } ] as Routes; diff --git a/src/views/uikit/inputdoc.ts b/src/views/uikit/inputdoc.ts index 53ff1d5..417ff1c 100644 --- a/src/views/uikit/inputdoc.ts +++ b/src/views/uikit/inputdoc.ts @@ -202,7 +202,7 @@ import { ToggleButtonModule } from 'primeng/togglebutton'; - +
InputGroup
diff --git a/src/views/uikit/tabledoc.ts b/src/views/uikit/tabledoc.ts index 7648ac8..3a4fe9b 100644 --- a/src/views/uikit/tabledoc.ts +++ b/src/views/uikit/tabledoc.ts @@ -286,19 +286,24 @@ interface expandedRows { - Id + + Id - Customer + + Customer - Date + + Date - Amount + + Amount - Status + + Status @@ -309,9 +314,9 @@ interface expandedRows { {{ order.id }} {{ order.customer }} {{ order.date }} - {{ order.amount | currency:'USD' }} - {{ order.status }} + {{ order.amount | currency: 'USD' }} + + {{ order.status }}