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';

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
-

-
-
-
- -
-
- Responsive Layout
-
- -
-
- Unlimited Push Messages
-
- -
-
- 50 Support Ticket
-
- -
-
- Free Shipping
-
-
-
-
+
+
+
+
Free
+

+
+
+
+ -
+
+ Responsive Layout
+
+ -
+
+ Unlimited Push Messages
+
+ -
+
+ 50 Support Ticket
+
+ -
+
+ Free Shipping
+
+
+
+
-
-
-
Startup
-

-
-
-
- -
-
- Responsive Layout
-
- -
-
- Unlimited Push Messages
-
- -
-
- 50 Support Ticket
-
- -
-
- Free Shipping
-
-
-
-
+
+
+
Startup
+

+
+
+
+ -
+
+ Responsive Layout
+
+ -
+
+ Unlimited Push Messages
+
+ -
+
+ 50 Support Ticket
+
+ -
+
+ Free Shipping
+
+
+
+
-
-
-
Enterprise
-

-
-
-
- -
-
- Responsive Layout
-
- -
-
- Unlimited Push Messages
-
- -
-
- 50 Support Ticket
-
- -
-
- Free Shipping
-
-
-
-
-
-
- `,
+
+
+
Enterprise
+

+
+
+
+ -
+
+ 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';