mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
feat(demo): added backend integration descriptions (#5768)
This commit is contained in:
parent
8813e47354
commit
067f179ed6
23 changed files with 519 additions and 10 deletions
|
|
@ -0,0 +1,28 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-python-integration-description',
|
||||
template: `
|
||||
<ngx-integration-description [features]="features"
|
||||
[url]="url"
|
||||
[buttonText]="buttonText"
|
||||
></ngx-integration-description>
|
||||
`,
|
||||
})
|
||||
export class PythonIntegrationDescriptionComponent {
|
||||
|
||||
buttonText = 'Get Backend From 49$';
|
||||
url = 'https://store.akveo.com/collections/python-bundles?utm_campaign=akveo_store%20-%20all%20bundles%20-%20ngx_admin_demo&utm_source=ngx_admin&utm_medium=referral&utm_content=sidebar_link_python';
|
||||
|
||||
features: string[] = [
|
||||
'ngx-admin template with 100+ UI components',
|
||||
'Python backend with Flask micro-framework',
|
||||
'Any SQL database can be used (PostgreSQL, MySQL, Oracle, Microsoft SQL Server, and SQLite)',
|
||||
'SQLAlchemy as database toolkit for CRUD operations',
|
||||
'Authentication using JWT tokens is implemented and integrated with both client and server side',
|
||||
'Compression is set up for better performance',
|
||||
'Documentation is included',
|
||||
'3 months free updates',
|
||||
];
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue