Skip to content

Commit

Permalink
feat(seo): add opengraph tags πŸ“
Browse files Browse the repository at this point in the history
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
  • Loading branch information
vinayakkulkarni committed Mar 20, 2023
1 parent 22f0d0b commit db993b3
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions config/head.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,31 @@ const head: NuxtAppConfig['head'] = {
name: 'viewport',
content: 'width=device-width, initial-scale=1',
},
{
name: 'format-detection',
content: 'telephone=no',
},
{ hid: 'title', name: 'title', content: 'Map My Expenses' },
{
hid: 'description',
name: 'description',
content: 'Visualize all your expenses on the map',
},
{ hid: 'og:title', property: 'og:title', content: 'Map My Expenses.' },
{
hid: 'og:description',
property: 'og:title',
content: 'Quickly map all your expenses',
},
{
name: 'format-detection',
content: 'telephone=no',
hid: 'og:site_name',
property: 'og:site_name',
content: 'Map My Expenses',
},
{
hid: 'twitter:description',
property: 'og:site_name',
content: 'Quickly map all your expenses',
},
],
link: [
Expand Down

0 comments on commit db993b3

Please sign in to comment.