diff --git a/apps/documentations/src/app/app.component.spec.ts b/apps/documentations/src/app/app.component.spec.ts
index 4c8fcc5..2e2c1e5 100644
--- a/apps/documentations/src/app/app.component.spec.ts
+++ b/apps/documentations/src/app/app.component.spec.ts
@@ -14,7 +14,7 @@ describe('AppComponent', () => {
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('h1')?.textContent).toContain(
- 'Welcome documentations'
+ 'Welcome documentations',
);
});
diff --git a/apps/documentations/src/app/app.component.ts b/apps/documentations/src/app/app.component.ts
index fcf6aaa..2ba3710 100644
--- a/apps/documentations/src/app/app.component.ts
+++ b/apps/documentations/src/app/app.component.ts
@@ -1,60 +1,72 @@
import { AppBannerTextComponent } from './shared/components/commons/app-banner-text/app-banner-text.component';
import { AppContentSectionComponent } from './shared/components/commons/app-content-section/app-content-section.component';
import { AppFeatureButtonComponent } from './shared/components/commons/app-feature-button/app-feature-button.component';
-import { AppFeatureCardComponent } from "./shared/components/commons/app-feature-card/app-feature-card.component";
+import { AppFeatureCardComponent } from './shared/components/commons/app-feature-card/app-feature-card.component';
import { AppFooterComponentComponent } from './shared/components/commons/app-footer-component/app-footer-component.component';
import { AppHeaderComponentComponent } from './shared/components/commons/app-header-component/app-header-component.component';
import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';
@Component({
- imports: [RouterModule, AppHeaderComponentComponent, AppFooterComponentComponent, AppFeatureButtonComponent, AppContentSectionComponent, AppBannerTextComponent, AppFeatureCardComponent],
+ imports: [
+ RouterModule,
+ AppHeaderComponentComponent,
+ AppFooterComponentComponent,
+ AppFeatureButtonComponent,
+ AppContentSectionComponent,
+ AppBannerTextComponent,
+ AppFeatureCardComponent,
+ ],
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
- providers: [
- ]
+ providers: [],
})
export class AppComponent {
title = 'Ngx Primer | Angular Primtives Component Library';
features = [
{
- title: "Accessible",
- description: "All components follow the accessibility guidelines set out by the Primer Design System to ensure a better user experience."
- },
+ title: 'Accessible',
+ description:
+ 'All components follow the accessibility guidelines set out by the Primer Design System to ensure a better user experience.',
+ },
{
- title: "Customizable",
- description: "Tailor the components' appearance and behavior using Angular's flexible input properties and directives."
- },
+ title: 'Customizable',
+ description:
+ "Tailor the components' appearance and behavior using Angular's flexible input properties and directives.",
+ },
{
- title: "Responsive",
- description: "The library is designed to be responsive and work seamlessly across all device types and screen sizes."
+ title: 'Responsive',
+ description:
+ 'The library is designed to be responsive and work seamlessly across all device types and screen sizes.',
},
{
- title: "Themeable",
- description: "Easily switch between light and dark modes, as well as apply custom themes to your components."
+ title: 'Themeable',
+ description:
+ 'Easily switch between light and dark modes, as well as apply custom themes to your components.',
},
{
- title: "Signal API",
- description: "Leverage Angular's Signal API to create custom events and handle them in your application, for highly reactive, optimized performance.",
- }
+ title: 'Signal API',
+ description:
+ "Leverage Angular's Signal API to create custom events and handle them in your application, for highly reactive, optimized performance.",
+ },
];
hyperlinks = [
{
- text: "Get Started",
+ text: 'Get Started',
hyperlink: true,
- target: "get-started",
+ target: 'get-started',
},
{
- text: "Quick Start",
+ text: 'Quick Start',
hyperlink: true,
- target: "quick-start",
+ target: 'quick-start',
},
{
- text: "Api Reference",
+ text: 'Api Reference',
hyperlink: true,
- target: "api-reference",
+ target: 'api-reference',
},
- ]
+ ];
}
diff --git a/apps/documentations/src/app/shared/components/commons/app-banner-text/app-banner-text.component.html b/apps/documentations/src/app/shared/components/commons/app-banner-text/app-banner-text.component.html
index d2a0409..cf61067 100644
--- a/apps/documentations/src/app/shared/components/commons/app-banner-text/app-banner-text.component.html
+++ b/apps/documentations/src/app/shared/components/commons/app-banner-text/app-banner-text.component.html
@@ -1,9 +1,15 @@
-