diff --git a/src/views/dashboard.ts b/src/views/dashboard.ts new file mode 100644 index 0000000..5895f6b --- /dev/null +++ b/src/views/dashboard.ts @@ -0,0 +1,26 @@ +import { Component } from '@angular/core'; +import { StatsWidget } from '@/src/components/dashboard/statswidget'; +import { RecentSalesWidget } from '@/src/components/dashboard/recentsaleswidget'; +import { BestSellingWidget } from '@/src/components/dashboard/bestsellingwidget'; +import { RevenueStreamWidget } from '@/src/components/dashboard/revenuestreamwidget'; +import { NotificationsWidget } from '@/src/components/dashboard/notificationswidget'; + +@Component({ + selector: 'app-dashboard', + imports: [StatsWidget, RecentSalesWidget, BestSellingWidget, RevenueStreamWidget, NotificationsWidget], + template: ` +
+ + +
+ + +
+
+ + +
+
+ `, +}) +export class Dashboard {}