Comparing version 0.1.1 to 0.2.0
{ | ||
"name": "astro-seo", | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"description": "Makes it easy to add SEO relevant tags to your Astro app.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jonasmerlin/astro-seo#readme", |
@@ -44,3 +44,28 @@ ![Astro SEO Logo](https://user-images.githubusercontent.com/5182256/131216951-8f74f425-f775-463d-a11b-0e01ad9fce8d.png) | ||
description | string | Text that gives a concise description of what your page is about. | ||
canoncial | string | Prevent duplicate content issues by specifying the "canonical" or "preferred" url of a web page. | ||
## Goals | ||
Our first goal for this project is to support the most-used tags that are | ||
relevant for SEO. That includes the most-used open graph tags. | ||
After that comes feature-parity with Next SEO. After _that_ ... we'll see. | ||
## What does this component do, exactly? | ||
There's certainly no magic to what Astro SEO does. Basically, it bundles the | ||
creation of regular SEO-relevant HTML tags inside one component that you can | ||
then use inside your page's `<head>` tag. | ||
The translation between props and tags is pretty direct and almost 1:1. After | ||
building, there probably won't be anything you wouldn't have written yourself. | ||
The idea is to surface the options that exist in a central place and adhere to | ||
best practices where it's theoretically possible not to. __If you want to see | ||
how the sausage gets made, there's only one place you will have to check__: | ||
`/src/SEO.astro` | ||
If you want, you can view Astro SEO as a checklist, so you don't forget a tag. | ||
Or maybe also as an educational tool, to see which options exist in the first | ||
place. | ||
## Acknowledgements | ||
@@ -47,0 +72,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5006
73