From db993b30497d5f860666a4661396f75260ce4aa0 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Mon, 20 Mar 2023 23:56:09 +0530 Subject: [PATCH] =?UTF-8?q?feat(seo):=20add=20opengraph=20tags=20?= =?UTF-8?q?=F0=9F=93=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> --- config/head.ts | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/config/head.ts b/config/head.ts index 295005a6..04af44ed 100644 --- a/config/head.ts +++ b/config/head.ts @@ -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: [