Skip to content

Commit be680f1

Browse files
committed
Update Angular 14.0.4 & improve seo on react
1 parent 817564b commit be680f1

File tree

28 files changed

+60
-60
lines changed

28 files changed

+60
-60
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ it's part of a repo series designed
1212

1313
to create a **Web Application with Angular 14**
1414

15-
* Featuring [**Angular 14.0.3**](https://github.com/angular/angular/releases) & [**Angular CLI 14.0.3**](https://github.com/angular/angular-cli/releases/)
15+
* Featuring [**Angular 14.0.4**](https://github.com/angular/angular/releases) & [**Angular CLI 14.0.4**](https://github.com/angular/angular-cli/releases/)
1616

1717

1818
* See the [**Live demo**](#angular-live-demo), Test the repo with [**Quick start**](#angular-quick-start) and for more information Read the step by step [**Tutorial**](#angular-tutorial) or read the [**Getting started**](#angular-getting-started)

angular/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular-seo",
2+
"name": "angular-pwa",
33
"version": "14.0.3",
44
"scripts": {
55
"ng": "ng",

angular/src/app/app.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ describe('AppComponent', () => {
2020
expect(app).toBeTruthy();
2121
});
2222

23-
it(`should have as title 'angular-seo'`, () => {
23+
it(`should have as title 'angular-pwa'`, () => {
2424
const fixture = TestBed.createComponent(AppComponent);
2525
const app = fixture.componentInstance;
26-
expect(app.title).toEqual('angular-seo');
26+
expect(app.title).toEqual('angular-pwa');
2727
});
2828

2929
});

angular/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { isPlatformBrowser } from '@angular/common';
88
styleUrls: ['./app.component.css']
99
})
1010
export class AppComponent implements OnInit {
11-
title = 'angular-seo';
11+
title = 'angular-pwa';
1212
footerUrl = 'https://www.ganatan.com/';
1313
footerLink = 'www.ganatan.com';
1414

angular/src/app/modules/application/example-bootstrap/tutorial.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class TutorialComponent {
1313
const content = 'Example Bootstrap content with meta';
1414
this.seoService.setMetaDescription(content);
1515

16-
this.seoService.setMetaTitle('Angular-seo Title : example-bootstrap Page');
16+
this.seoService.setMetaTitle('angular-pwa Title : example-bootstrap Page');
1717

1818
}
1919

angular/src/app/modules/application/example-components/tutorial.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class TutorialComponent implements OnInit {
1818
const content = 'Example Components content with meta';
1919
this.seoService.setMetaDescription(content);
2020

21-
this.seoService.setMetaTitle('Angular-seo Title : example-components Page');
21+
this.seoService.setMetaTitle('angular-pwa Title : example-components Page');
2222

2323
this.channelSelected = new Channel();
2424
this.channels =

angular/src/app/modules/application/example-forms/tutorial.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class TutorialComponent {
1313
const content = 'Example Forms content with meta';
1414
this.seoService.setMetaDescription(content);
1515

16-
this.seoService.setMetaTitle('Angular-seo Title : example-forms Page');
16+
this.seoService.setMetaTitle('angular-pwa Title : example-forms Page');
1717

1818
}
1919

angular/src/app/modules/application/example-services/tutorial.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class TutorialComponent implements OnInit {
2222
const content = 'Example Forms content with meta';
2323
this.seoService.setMetaDescription(content);
2424

25-
this.seoService.setMetaTitle('Angular-seo Title : example-services Page');
25+
this.seoService.setMetaTitle('angular-pwa Title : example-services Page');
2626

2727
this.songs = [];
2828
this.yearSelected = 3;

angular/src/app/modules/general/contact/contact.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export class ContactComponent {
1010

1111
constructor(private seoService: SeoService) {
1212

13-
const content = 'angular-seo - Description - Contact Page';
14-
const title = 'angular-seo - Title - Contact Page';
13+
const content = 'angular-pwa - Description - Contact Page';
14+
const title = 'angular-pwa - Title - Contact Page';
1515

1616
this.seoService.setMetaDescription(content);
1717
this.seoService.setMetaTitle(title);

0 commit comments

Comments
 (0)