schema.org added
This commit is contained in:
parent
42f70675cb
commit
5be45ec0b0
@ -32,7 +32,7 @@ export default function RootLayout({ children }) {
|
|||||||
/> */}
|
/> */}
|
||||||
|
|
||||||
{/* ✅ Canonical Tag */}
|
{/* ✅ Canonical Tag */}
|
||||||
<link rel="canonical" href={siteUrl} aria-label="Site Url"/>
|
<link rel="canonical" href={siteUrl} aria-label="Site Url" />
|
||||||
|
|
||||||
{/* ✅ Open Graph Meta */}
|
{/* ✅ Open Graph Meta */}
|
||||||
<meta property="og:title" content="Rapha Rehab – Physiotherapy Clinic" />
|
<meta property="og:title" content="Rapha Rehab – Physiotherapy Clinic" />
|
||||||
@ -60,10 +60,10 @@ export default function RootLayout({ children }) {
|
|||||||
<meta name="twitter:site" content="@YourTwitterHandle" />
|
<meta name="twitter:site" content="@YourTwitterHandle" />
|
||||||
|
|
||||||
{/* ✅ Preconnect — Faster 3rd-party requests */}
|
{/* ✅ Preconnect — Faster 3rd-party requests */}
|
||||||
<link rel="preconnect" href="https://www.googletagmanager.com" aria-label="Googleletamanage"/>
|
<link rel="preconnect" href="https://www.googletagmanager.com" aria-label="Googleletamanage" />
|
||||||
<link rel="preconnect" href="https://connect.facebook.net" aria-label="facebook"/>
|
<link rel="preconnect" href="https://connect.facebook.net" aria-label="facebook" />
|
||||||
<link rel="preconnect" href="https://www.facebook.com" aria-label="Facebook"/>
|
<link rel="preconnect" href="https://www.facebook.com" aria-label="Facebook" />
|
||||||
<link rel="preconnect" href="https://scripts.clarity.ms" aria-label="Scripts Clarity"/>
|
<link rel="preconnect" href="https://scripts.clarity.ms" aria-label="Scripts Clarity" />
|
||||||
|
|
||||||
{/* ✅ fetchpriority for LCP Image */}
|
{/* ✅ fetchpriority for LCP Image */}
|
||||||
<link
|
<link
|
||||||
@ -74,8 +74,88 @@ export default function RootLayout({ children }) {
|
|||||||
aria-label="loader"
|
aria-label="loader"
|
||||||
/>
|
/>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
{/* PhysiotherapyClinic Schema Markup */}
|
||||||
|
<Script
|
||||||
|
id="schema-physiotherapy"
|
||||||
|
type="application/ld+json"
|
||||||
|
strategy="afterInteractive"
|
||||||
|
>
|
||||||
|
{JSON.stringify({
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "PhysiotherapyClinic",
|
||||||
|
name: "Repharehab Clinic",
|
||||||
|
image: logoUrl,
|
||||||
|
"@id": siteUrl,
|
||||||
|
url: siteUrl,
|
||||||
|
telephone: "+16477223434",
|
||||||
|
priceRange: "$$",
|
||||||
|
medicalSpecialty: "PhysicalTherapy",
|
||||||
|
address: {
|
||||||
|
"@type": "PostalAddress",
|
||||||
|
streetAddress: "5 – 4335 Bloor Street West",
|
||||||
|
addressLocality: "Etobicoke",
|
||||||
|
addressRegion: "ON",
|
||||||
|
postalCode: "M9C 2A5",
|
||||||
|
addressCountry: "CA",
|
||||||
|
},
|
||||||
|
geo: {
|
||||||
|
"@type": "GeoCoordinates",
|
||||||
|
latitude: 43.6389,
|
||||||
|
longitude: -79.5716,
|
||||||
|
},
|
||||||
|
openingHoursSpecification: [
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Monday",
|
||||||
|
opens: "10:00",
|
||||||
|
closes: "20:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Tuesday",
|
||||||
|
opens: "14:00",
|
||||||
|
closes: "19:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Wednesday",
|
||||||
|
opens: "10:00",
|
||||||
|
closes: "20:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Thursday",
|
||||||
|
opens: "10:00",
|
||||||
|
closes: "20:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Friday",
|
||||||
|
opens: "10:00",
|
||||||
|
closes: "20:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Saturday",
|
||||||
|
opens: "10:00",
|
||||||
|
closes: "19:00",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "OpeningHoursSpecification",
|
||||||
|
dayOfWeek: "Sunday",
|
||||||
|
opens: "00:00",
|
||||||
|
closes: "00:00",
|
||||||
|
closed: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
sameAs: [
|
||||||
|
"https://www.facebook.com/ELRaphaRehabCenter/",
|
||||||
|
"https://www.instagram.com/elrapharehab/",
|
||||||
|
],
|
||||||
|
})}
|
||||||
|
</Script>
|
||||||
|
|
||||||
{/* ✅ Google Tag Manager — non-blocking */}
|
{/* ✅ Google Tag Manager — non-blocking */}
|
||||||
<Script id="gtm-init" strategy="afterInteractive">
|
<Script id="gtm-init" strategy="afterInteractive">
|
||||||
{`
|
{`
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user