mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-29 21:58:49 +01:00
feat(core): add backend bundles section for landing
This commit is contained in:
commit
92acc44a32
24 changed files with 936 additions and 42 deletions
|
|
@ -38,4 +38,33 @@ export class DescriptionsService {
|
|||
getDescriptions(): Observable<Descriptions[]> {
|
||||
return observableOf(this.descriptions);
|
||||
}
|
||||
|
||||
/* tslint:disable:max-line-length */
|
||||
private bundleDescriptions: Descriptions[] = [
|
||||
{
|
||||
icon: 'umbrella-outline',
|
||||
title: 'Convenient',
|
||||
description: 'Complete pack of well known Angular based ngx-admin template, integrated with Backend Solution. Finally, you can get fully backend integrated solution out of the box. Flexibility of Ngx Admin, the variety of Nebular features and convenience of integrated Backend in one pack.',
|
||||
},
|
||||
{
|
||||
icon: 'settings-2-outline',
|
||||
title: 'Functional',
|
||||
description: 'Functional Backend Solution with Designed and Implemented Services and Data Flow. Deploy it as ready to use solution for a particular case, or give it to your development team to incrementally add functionality for the bigger system. it gives you a significant boost on start and solid development structure.',
|
||||
},
|
||||
{
|
||||
icon: 'clock-outline',
|
||||
title: 'Efficient',
|
||||
description: 'Save more than $21,000 using Backend Bundle. According to our research usage of a ready Backend Bundle optimizes 300 hours of development time. Taking the average hourly rate of a full stack developer in the US - $70.',
|
||||
},
|
||||
{
|
||||
icon: 'checkmark-circle-2-outline',
|
||||
title: 'Ready to use',
|
||||
description: 'We prepared this backend pack as development basement which lets your team concentrate on business logic and data models. Now .NET and .NET Core are available as frameworks of choice. More are in progress…',
|
||||
},
|
||||
];
|
||||
/* tslint:enable:max-line-length */
|
||||
|
||||
getBundleDescriptions(): Observable<Descriptions[]> {
|
||||
return observableOf(this.bundleDescriptions);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue