open graph meta tag and twitter card meta tag added
This commit is contained in:
parent
e6b2375529
commit
445763b7cd
@ -17,15 +17,55 @@ export default function RootLayout({ children }) {
|
|||||||
|
|
||||||
const siteUrl = "https://rapharehab.ca";
|
const siteUrl = "https://rapharehab.ca";
|
||||||
const logoUrl = `${siteUrl}/assets/images/logo.png`;
|
const logoUrl = `${siteUrl}/assets/images/logo.png`;
|
||||||
|
const ogImage = `${siteUrl}/assets/images/logo.jpg`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<html lang="en" className={`${poppins.variable}`}>
|
<html lang="en" className={`${poppins.variable}`}>
|
||||||
|
|
||||||
{/* ✅ Canonical Tag */}
|
|
||||||
<link rel="canonical" href="https://rapharehab.ca/" />
|
|
||||||
|
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
|
{/* ✅ Canonical Tag */}
|
||||||
|
<link rel="canonical" href="https://rapharehab.ca/" />
|
||||||
|
|
||||||
|
{/* ✅ Open Graph Meta Tags */}
|
||||||
|
<meta
|
||||||
|
property="og:title"
|
||||||
|
content="Rapha Rehab – Your Trusted Physiotherapy & Rehabilitation Clinic in Etobicoke"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content="Rapha Rehab provides evidence-based physiotherapy, sports injury rehab, massage therapy, chiropractic care, orthotics and more in Etobicoke. Regain mobility, reduce pain and live healthier."
|
||||||
|
/>
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content={siteUrl} />
|
||||||
|
<meta property="og:site_name" content="Rapha Rehab" />
|
||||||
|
<meta property="og:image" content={ogImage} />
|
||||||
|
<meta
|
||||||
|
property="og:image:alt"
|
||||||
|
content="Rapha Rehab clinic interior – physiotherapy treatment in progress"
|
||||||
|
/>
|
||||||
|
<meta property="og:locale" content="en_CA" />
|
||||||
|
|
||||||
|
{/* ✅ Twitter Card Meta Tags */}
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta
|
||||||
|
name="twitter:title"
|
||||||
|
content="Rapha Rehab – Physiotherapy & Rehabilitation Clinic in Etobicoke"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
name="twitter:description"
|
||||||
|
content="Experience expert physiotherapy, sports rehab, massage therapy, chiropractic care, and orthotics at Rapha Rehab in Etobicoke. Get personalized treatment to restore your strength and mobility."
|
||||||
|
/>
|
||||||
|
<meta name="twitter:image" content={ogImage} />
|
||||||
|
<meta
|
||||||
|
name="twitter:image:alt"
|
||||||
|
content="Physiotherapy session at Rapha Rehab Clinic, Etobicoke"
|
||||||
|
/>
|
||||||
|
<meta name="twitter:site" content="@YourTwitterHandle" />
|
||||||
|
<meta name="twitter:url" content={siteUrl} />
|
||||||
|
|
||||||
{/* Microsoft Clarity */}
|
{/* Microsoft Clarity */}
|
||||||
<Script id="clarity-script" strategy="afterInteractive">
|
<Script id="clarity-script" strategy="afterInteractive">
|
||||||
{`
|
{`
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user