Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created December 17, 2019 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adityatyagi/3408bbb58675f07d26c83032cc90f183 to your computer and use it in GitHub Desktop.
Save adityatyagi/3408bbb58675f07d26c83032cc90f183 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from "@angular/core";
// importing service
import { Meta, Title } from "@angular/platform-browser";
@Component({
selector: "app-landing",
templateUrl: "./landing.component.html",
styleUrls: ["./landing.component.scss"]
})
export class LandingComponent implements OnInit {
// injecting service
constructor(private _meta: Meta, private _title: Title) {
this._meta.addTags([
{ name: "author", content: "Aditya Tyagi" },
{ name: "description", content: "SEO friendly Angular Application" },
{ name: "keywords", content: "Angular, Meta Service, SEO" }
]);
// adding title
this._title.setTitle("Scalable Angular App");
}
ngOnInit() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment