-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (93 loc) · 5.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="images/favicon.svg" type="image/svg+xml" />
<!-- Dynamic SEO Meta Tags -->
<script>
const routes = {
'/': {
title: 'FreeScout Installation Service | Expert Setup & Configuration 2024',
description: 'FreeScout Installation Service - Professional setup, configuration & support for your FreeScout helpdesk. 24/7 expert assistance, starting at $100. Get your helpdesk running today!'
},
'/pricing.html': {
title: 'FreeScout Installation Cost & Packages | Best Prices',
description: 'Compare FreeScout installation packages starting from $100. Professional setup, configuration & support. Choose the perfect plan for your business needs.'
},
'/about.html': {
title: 'Official FreeScout Installation Partner | Leading Helpdesk Experts',
description: 'Certified FreeScout installation experts with 500+ successful setups. Professional configuration, security hardening & 24/7 support for your FreeScout helpdesk.'
},
'/contact.html': {
title: 'Contact FreeScout Installation Experts | 24/7 Global Support',
description: 'Need help with FreeScout installation? Our experts are available 24/7. Get professional support for setup, configuration & customization of your FreeScout helpdesk.'
}
};
const path = window.location.pathname;
const route = routes[path] || routes['/'];
document.title = route.title;
const metaDesc = document.querySelector('meta[name="description"]');
if (metaDesc) metaDesc.setAttribute('content', route.description);
// Update Open Graph tags
const ogTitle = document.querySelector('meta[property="og:title"]');
const ogDesc = document.querySelector('meta[property="og:description"]');
if (ogTitle) ogTitle.setAttribute('content', route.title);
if (ogDesc) ogDesc.setAttribute('content', route.description);
// Load PayPal SDK only on installation page
if (path === '/install-freescout.html') {
const script = document.createElement('script');
script.src = 'https://www.paypal.com/sdk/js?client-id=AU4U6xkdNP1tsWpw5iea5iYzMcmaZu8dB8TA7aan2Ybpk2o4zeL8gTNEY-oEGHUXCzeCcrXbZdL5CsRK¤cy=USD';
script.async = true;
document.head.appendChild(script);
}
</script>
<!-- Default Meta Tags -->
<meta name="description" content="#1 FreeScout Installation Service - Professional setup, configuration & support for your FreeScout helpdesk. 24/7 expert assistance, starting at $100. Get your helpdesk running today!" />
<meta name="keywords" content="freescout, freescout installation, freescout setup, freescout configuration, helpdesk installation, freescout expert, freescout service, freescout support" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="FreeScout Installation Service | Expert Setup & Configuration 2024" />
<meta property="og:description" content="#1 FreeScout Installation Service - Professional setup, configuration & support for your FreeScout helpdesk. 24/7 expert assistance, starting at $100. Get your helpdesk running today!" />
<meta property="og:url" content="https://freescout-installation.com" />
<meta property="og:site_name" content="FreeScout Installation Service" />
<!-- Additional SEO Meta Tags -->
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="author" content="FreeScout Installation Service" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="canonical" href="https://freescout-installation.com" />
<!-- Schema.org Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfessionalService",
"name": "FreeScout Installation Service",
"description": "Professional FreeScout installation, configuration and support service. Expert setup of your helpdesk software with 24/7 support.",
"url": "https://freescout-installation.com",
"telephone": "+442045773201",
"email": "[email protected]",
"priceRange": "$100-$200",
"openingHours": "Mo-Fr 09:00-18:00",
"areaServed": "Worldwide",
"serviceType": "FreeScout Installation",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "500"
},
"offers": {
"@type": "AggregateOffer",
"lowPrice": "100",
"highPrice": "200",
"priceCurrency": "USD",
"offerCount": "3"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>