Exifly / ApiVault

Your gateway to a world of public APIs.
https://apivault.dev
Other
435 stars 39 forks source link

added dinamyc meta description #193

Closed gdjohn4s closed 1 year ago

gdjohn4s commented 1 year ago

Description

This PR Provide a little change on [category].vue page component. With this modification, every time a user go to a category page, the html meta description will change based by category.

Proposed Changes

Added meta on useHead method in [category].vue.

  meta: [
    {
      name: "description",
      content: `A List of your favourite ${route.params.category} APIs. For Free!`,
    },
  ],

Checklist