@ngaox/seo
Version:
Easily generate and manage SEO-friendly meta tags, page title,...
44 lines (36 loc) • 1.04 kB
Markdown
# Ngaox Seo
[](https://ngaox-lab.web.app)
[](https://ngaox-lab.web.app/docs/seo)
[](https://www.npmjs.com/package/@ngaox/seo)
**Easily generate and manage SEO-friendly meta tags, page title,...**
## [Getting Started with Ngaox Seo](https://ngaox-lab.web.app/docs/seo)
## Samples
```ts
// Angular router routes
const routes: Routes = [
{
path: 'users',
data: {
// This 👇 will be used as the page seo data
NgaoxSeo: {
title: 'Users List Page',
description: 'A short description goes here.',
siteName: 'Ngaox'
}
}
}
];
```
```html
<!-- Also available as an angular component -->
<ngaox-seo
title="Hello World"
description="This is a description"
keywords="keyword1, keyword2, keyword3"
[twitter]="{
site: '@NgaoxLab',
creator: '@rabraghib'
}"
></ngaox-seo>
```