From a293d0fa9a2551a2430a6662858dab265f5931d2 Mon Sep 17 00:00:00 2001 From: null Date: Mon, 18 May 2026 13:58:35 -0500 Subject: [PATCH] feat(seo): add canonical URLs, close SEO audit (#175) --- package.json | 2 +- src/components/SEO.jsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0f9bf14..bbdfd1b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "queuenorth-website", "private": true, - "version": "0.7.3", + "version": "0.7.4", "type": "module", "scripts": { "dev": "concurrently \"vite\" \"node server/index.js\"", diff --git a/src/components/SEO.jsx b/src/components/SEO.jsx index bc537c1..d544a29 100644 --- a/src/components/SEO.jsx +++ b/src/components/SEO.jsx @@ -12,6 +12,9 @@ const SEO = ({ title, description, url, type = 'website', image = DEFAULT_IMAGE, {title} + {/* Canonical URL — prevents duplicate content */} + + {/* Open Graph — Facebook, LinkedIn, iMessage, Google Messages, Slack */}