};function runPageScript(){
(function () {
// =========================
// The Furtado Group — Schedule Consultation Page SEO Boost (Oakville + Burlington)
// Adds: canonical, OpenGraph/Twitter meta, and JSON-LD (WebPage + Service + Offer)
// =========================
var origin = window.location.origin;
var path = window.location.pathname.replace(/\/+$/, "");
var canonicalUrl = origin + path;
// 1) Canonical (only if missing)
if (!document.querySelector('link[rel="canonical"]')) {
var canonical = document.createElement("link");
canonical.rel = "canonical";
canonical.href = canonicalUrl;
document.head.appendChild(canonical);
}
// Helper to upsert meta tags
function upsertMeta(selector, attrs) {
var el = document.querySelector(selector);
if (!el) {
el = document.createElement("meta");
document.head.appendChild(el);
}
Object.keys(attrs).forEach(function (k) {
el.setAttribute(k, attrs[k]);
});
}
// 2) OpenGraph + Twitter
var title = "Schedule a Free Real Estate Consultation | Oakville & Burlington | The Furtado Group";
var description =
"Book a free 15–30 minute consultation with The Furtado Group—Top 1% in the GTA (TRREB, based on sales volume and transactions). Get clear next steps for buying, selling, investing, or building in Oakville and Burlington.";
upsertMeta('meta[property="og:type"]', { property: "og:type", content: "website" });
upsertMeta('meta[property="og:site_name"]', { property: "og:site_name", content: "The Furtado Group" });
upsertMeta('meta[property="og:title"]', { property: "og:title", content: title });
upsertMeta('meta[property="og:description"]', { property: "og:description", content: description });
upsertMeta('meta[property="og:url"]', { property: "og:url", content: canonicalUrl });
upsertMeta('meta[name="twitter:card"]', { name: "twitter:card", content: "summary_large_image" });
upsertMeta('meta[name="twitter:title"]', { name: "twitter:title", content: title });
upsertMeta('meta[name="twitter:description"]', { name: "twitter:description", content: description });
// 3) JSON-LD (WebPage + Service + Offer)
var jsonLd = {
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebPage",
"@id": canonicalUrl + "#webpage",
"url": canonicalUrl,
"name": title,
"description": description,
"isPartOf": { "@id": "https://www.thefurtadogroup.com/#website" },
"about": { "@id": "https://www.thefurtadogroup.com/#organization" },
"inLanguage": "en-CA",
"areaServed": [
{ "@type": "City", "name": "Oakville", "addressRegion": "ON", "addressCountry": "CA" },
{ "@type": "City", "name": "Burlington", "addressRegion": "ON", "addressCountry": "CA" }
],
"mainEntity": { "@id": canonicalUrl + "#consultation-service" }
},
{
"@type": "Service",
"@id": canonicalUrl + "#consultation-service",
"name": "Free 15–30 Minute Real Estate Consultation",
"serviceType": "Real estate consultation",
"provider": { "@id": "https://www.thefurtadogroup.com/#organization" },
"areaServed": [
{ "@type": "City", "name": "Oakville", "addressRegion": "ON", "addressCountry": "CA" },
{ "@type": "City", "name": "Burlington", "addressRegion": "ON", "addressCountry": "CA" },
{ "@type": "City", "name": "Mississauga", "addressRegion": "ON", "addressCountry": "CA" },
{ "@type": "City", "name": "Milton", "addressRegion": "ON", "addressCountry": "CA" },
{ "@type": "City", "name": "Toronto", "addressRegion": "ON", "addressCountry": "CA" }
],
"audience": {
"@type": "Audience",
"audienceType": "Home buyers, home sellers, investors, and custom home builders"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "CAD",
"availability": "https://schema.org/InStock",
"url": canonicalUrl
}
}
]
};
// Inject JSON-LD (avoid duplicates)
if (!document.querySelector('script[data-tfg-consultation-jsonld="true"]')) {
var ld = document.createElement("script");
ld.type = "application/ld+json";
ld.setAttribute("data-tfg-consultation-jsonld", "true");
ld.text = JSON.stringify(jsonLd);
document.head.appendChild(ld);
}
})();
};