From dc8b4d9d48d8bf036a4be2f31c9845048c0d0ccd Mon Sep 17 00:00:00 2001 From: Jennifer Hiller Date: Tue, 30 Jul 2024 14:53:51 -0700 Subject: [PATCH] added aggregate rating to ld json --- src/views/HomeView.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index d03855fa..e1aa1d5a 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -8,7 +8,12 @@ onMounted(() => { "@context": "https://schema.org", "@type": "WebSite", "name": "Your Source for everything Jennifer Hiller", - "url": "https://jennhiller.com" + "url": "https://jennhiller.com", + "aggregateRating": { + "@type": "AggregateRating", + "ratingValue": 4.4, + "reviewCount": 89 + } }); document.head.appendChild(script); });