-
-
-
- SAKAI
-
-
-
-
-
-
-
-
-
+ imports: [RouterModule,TopbarWidget, HeroWidget, FeaturesWidget, HighlightsWidget, PricingWidget, FooterWidget, RippleModule, StyleClassModule, ButtonModule, DividerModule],
+ template:`
-
-
-
-
Eu sem integer eget magna fermentum
-
Sed blandit libero volutpat sed cras. Fames ac turpis egestas integer. Placerat in egestas erat...
-
-
-
-
-
-
-
-
-
-
-
Marvelous Features
- Placerat in egestas erat...
-
-
-
-
-
-
-
-
-
Easy to Use
-
Posuere morbi leo urna molestie.
-
-
-
-
-
-
-
-
-
-
-
Fresh Design
-
Semper risus in hendrerit.
-
-
-
-
-
-
-
-
-
-
-
Well Documented
-
Non arcu risus quis varius quam quisque.
-
-
-
-
-
-
-
-
-
-
-
Responsive Layout
-
Nulla malesuada pellentesque elit.
-
-
-
-
-
-
-
-
-
-
-
Clean Code
-
Condimentum lacinia quis vel eros.
-
-
-
-
-
-
-
-
-
-
-
Dark Mode
-
Convallis tellus id interdum velit laoreet.
-
-
-
-
-
-
-
-
-
-
-
Ready to Use
-
Mauris sit amet massa vitae.
-
-
-
-
-
-
-
-
-
-
-
Modern Practices
-
Elementum nibh tellus molestie nunc non.
-
-
-
-
-
-
-
-
-
-
-
Privacy
-
Neque egestas congue quisque.
-
-
-
-
-
-
-
Joséphine Miller
-
Peak Interactive
-
“Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.”
-
-
-
-
-
-
-
-
-
-
Powerful Everywhere
- Amet consectetur adipiscing elit...
-
-
-
-
-
-
-
-
-
-
-
-
Congue Quisque Egestas
-
Lectus arcu bibendum at varius vel pharetra vel turpis nunc. Eget aliquet nibh praesent tristique magna sit amet purus gravida. Sit amet mattis vulputate enim nulla aliquet.
-
-
-
-
-
-
-
-
-
Celerisque Eu Ultrices
-
Adipiscing commodo elit at imperdiet dui. Viverra nibh cras pulvinar mattis nunc sed blandit libero. Suspendisse in est ante in. Mauris pharetra et ultrices neque ornare aenean euismod elementum nisi.
-
-
-
-
-
-
-
-
-
-
-
Matchless Pricing
- Amet consectetur adipiscing elit...
-
-
-
-
-
-
Free
-
-
- $0
- per month
-
-
-
-
-
-
- Responsive Layout
-
-
-
- Unlimited Push Messages
-
-
-
- 50 Support Ticket
-
-
-
- Free Shipping
-
-
-
-
-
-
-
-
Startup
-
-
- $1
- per month
-
-
-
-
-
-
- Responsive Layout
-
-
-
- Unlimited Push Messages
-
-
-
- 50 Support Ticket
-
-
-
- Free Shipping
-
-
-
-
-
-
-
-
Enterprise
-
-
- $999
- per month
-
-
-
-
-
-
- Responsive Layout
-
-
-
- Unlimited Push Messages
-
-
-
- 50 Support Ticket
-
-
-
- Free Shipping
-
-
-
-
-
-
-
-
-
`,
})
-export class Landing {
- layoutService = inject(LayoutService);
-
- router = inject(Router);
-}
+export class Landing {}
diff --git a/src/views/uikit/chartdoc.ts b/src/views/uikit/chartdoc.ts
index 2346765..79bf5c5 100644
--- a/src/views/uikit/chartdoc.ts
+++ b/src/views/uikit/chartdoc.ts
@@ -2,7 +2,7 @@ import { Component } from '@angular/core';
import { ChartModule } from 'primeng/chart';
import { CommonModule } from '@angular/common';
import { debounceTime, Subscription } from 'rxjs';
-import { LayoutService } from '@/src/app/layout/service/app.layout.service';
+import { LayoutService } from '@/src/service/applayoutservice';
@Component({
standalone:true,
diff --git a/src/views/uikit/inputdoc.ts b/src/views/uikit/inputdoc.ts
index 4347f43..33e4e22 100644
--- a/src/views/uikit/inputdoc.ts
+++ b/src/views/uikit/inputdoc.ts
@@ -25,8 +25,8 @@ import {MultiSelectModule} from "primeng/multiselect";
import {ListboxModule} from "primeng/listbox";
import {InputGroupAddonModule} from "primeng/inputgroupaddon";
import {TextareaModule} from "primeng/textarea";
-import {CountryService} from "../../app/demo/service/country.service";
-import {NodeService} from "../../app/demo/service/node.service";
+import { CountryService } from '@/src/service/country.service';
+import { NodeService } from '@/src/service/node.service';
@Component({
standalone: true,
@@ -234,7 +234,8 @@ import {NodeService} from "../../app/demo/service/node.service";
- `
+ `,
+ providers: [CountryService, NodeService]
})
export class InputDoc implements OnInit {
floatValue: any = null;
diff --git a/src/views/uikit/listdoc.ts b/src/views/uikit/listdoc.ts
index 430a727..b34f73a 100644
--- a/src/views/uikit/listdoc.ts
+++ b/src/views/uikit/listdoc.ts
@@ -1,6 +1,5 @@
import { Component } from '@angular/core';
-import { ProductService } from '@/src/app/demo/service/product.service';
-import { Product } from '@/src/app/demo/api/product';
+
import { FormsModule } from '@angular/forms';
import { DataViewModule } from 'primeng/dataview';
import { CommonModule } from '@angular/common';
@@ -9,6 +8,7 @@ import { PickListModule } from 'primeng/picklist';
import { OrderListModule } from 'primeng/orderlist';
import { TagModule } from 'primeng/tag';
import { ButtonModule } from 'primeng/button';
+import { Product, ProductService } from '@/src/service/product.service';
@Component({
standalone:true,
diff --git a/src/views/uikit/mediadoc.ts b/src/views/uikit/mediadoc.ts
index ff6493c..7999d26 100644
--- a/src/views/uikit/mediadoc.ts
+++ b/src/views/uikit/mediadoc.ts
@@ -1,6 +1,3 @@
-import { Product } from '@/src/app/demo/api/product';
-import { PhotoService } from '@/src/app/demo/service/photo.service';
-import { ProductService } from '@/src/app/demo/service/product.service';
import { CommonModule } from '@angular/common';
import { Component, OnInit } from '@angular/core';
import { ButtonModule } from 'primeng/button';
@@ -8,6 +5,8 @@ import { CarouselModule } from 'primeng/carousel';
import { GalleriaModule } from 'primeng/galleria';
import { ImageModule } from 'primeng/image';
import { TagModule } from 'primeng/tag';
+import { Product, ProductService } from '@/src/service/product.service';
+import { PhotoService } from '@/src/service/photo.service';
@Component({
standalone:true,
diff --git a/src/views/uikit/overlaydoc.ts b/src/views/uikit/overlaydoc.ts
index 4ed4f79..cb37bc7 100644
--- a/src/views/uikit/overlaydoc.ts
+++ b/src/views/uikit/overlaydoc.ts
@@ -1,5 +1,3 @@
-import { Product } from '@/src/app/demo/api/product';
-import { ProductService } from '@/src/app/demo/service/product.service';
import { Component, OnInit } from '@angular/core';
import { ConfirmationService, MessageService } from 'primeng/api';
import { ButtonModule } from 'primeng/button';
@@ -8,9 +6,9 @@ import { ToastModule } from 'primeng/toast';
import { DrawerModule } from 'primeng/drawer';
import { Popover, PopoverModule } from 'primeng/popover';
import { ConfirmPopupModule } from 'primeng/confirmpopup';
-import { OverlayPanel } from 'primeng/overlaypanel';
-import { InputText, InputTextModule } from 'primeng/inputtext';
+import { InputTextModule } from 'primeng/inputtext';
import { FormsModule } from '@angular/forms';
+import { Product, ProductService } from '@/src/service/product.service';
@Component({
standalone: true,
diff --git a/src/views/uikit/tabledoc.ts b/src/views/uikit/tabledoc.ts
index 886f963..afb1383 100644
--- a/src/views/uikit/tabledoc.ts
+++ b/src/views/uikit/tabledoc.ts
@@ -1,5 +1,3 @@
-import { Product } from '@/src/app/demo/api/product';
-import { ProductService } from '@/src/app/demo/service/product.service';
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
import { ConfirmationService, MessageService } from 'primeng/api';
import { InputTextModule } from 'primeng/inputtext';
@@ -10,12 +8,12 @@ import { Table, TableModule } from 'primeng/table';
import { ProgressBarModule } from 'primeng/progressbar';
import { ToggleButtonModule } from 'primeng/togglebutton';
import { ToastModule } from 'primeng/toast';
-import { Customer, Representative } from '@/src/app/demo/api/customer';
-import { CustomerService } from '@/src/app/demo/service/customer.service';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { ButtonModule } from 'primeng/button';
import { RatingModule } from 'primeng/rating';
+import { Customer, CustomerService, Representative } from '@/src/service/customer.service';
+import { Product, ProductService } from '@/src/service/product.service';
interface expandedRows {
[key: string]: boolean;
@@ -332,7 +330,7 @@ interface expandedRows {
providers: [ConfirmationService, MessageService]
})
export class TableDoc implements OnInit {
-
+
customers1: Customer[] = [];
customers2: Customer[] = [];
@@ -451,6 +449,6 @@ export class TableDoc implements OnInit {
table.clear();
this.filter.nativeElement.value = '';
}
-
-
-}
\ No newline at end of file
+
+
+}
diff --git a/src/views/uikit/treedoc.ts b/src/views/uikit/treedoc.ts
index 75ed540..5cb2dfa 100644
--- a/src/views/uikit/treedoc.ts
+++ b/src/views/uikit/treedoc.ts
@@ -4,7 +4,7 @@ import {TreeModule} from "primeng/tree";
import {FormsModule} from "@angular/forms";
import {TreeTableModule} from "primeng/treetable";
import {CommonModule} from "@angular/common";
-import {NodeService} from "../../app/demo/service/node.service";
+import { NodeService } from '@/src/service/node.service';
@Component({
standalone: true,