🔍 ENHANCED: Comprehensive Structured Data for Rich Snippets
This commit is contained in:
188
index.php
188
index.php
@@ -100,30 +100,204 @@ $twitter_card_image = "https://ukdataservices.co.uk/assets/images/ukds-main-logo
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="assets/css/main.css">
|
||||
|
||||
<!-- Structured Data -->
|
||||
<!-- Enhanced Structured Data for Rich Snippets -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"@id": "https://ukdataservices.co.uk#organization",
|
||||
"name": "UK Data Services",
|
||||
"legalName": "UK Data Services Limited",
|
||||
"url": "https://ukdataservices.co.uk",
|
||||
"logo": "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png",
|
||||
"description": "Professional web scraping and data analytics services in the UK",
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png",
|
||||
"width": 300,
|
||||
"height": 100
|
||||
},
|
||||
"image": "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png",
|
||||
"description": "Leading UK provider of professional web scraping, data extraction, business intelligence, and analytics services. Trusted by 150+ businesses across the UK.",
|
||||
"address": {
|
||||
"@type": "PostalAddress",
|
||||
"addressCountry": "GB"
|
||||
"addressCountry": "GB",
|
||||
"addressRegion": "England"
|
||||
},
|
||||
"contactPoint": {
|
||||
"@type": "ContactPoint",
|
||||
"telephone": "+44-1692-689150",
|
||||
"contactType": "Customer Service",
|
||||
"areaServed": "GB",
|
||||
"availableLanguage": "English"
|
||||
},
|
||||
"telephone": "+44 1692 689150",
|
||||
"sameAs": [
|
||||
"https://www.linkedin.com/company/uk-data-services"
|
||||
"https://www.linkedin.com/company/uk-data-services",
|
||||
"https://twitter.com/ukdataservices"
|
||||
],
|
||||
"serviceType": ["Web Scraping", "Data Extraction", "Business Intelligence", "Data Analytics"],
|
||||
"founder": {
|
||||
"@type": "Person",
|
||||
"name": "UK Data Services Team"
|
||||
},
|
||||
"foundingDate": "2018",
|
||||
"numberOfEmployees": {
|
||||
"@type": "QuantitativeValue",
|
||||
"value": "15"
|
||||
},
|
||||
"areaServed": {
|
||||
"@type": "Country",
|
||||
"name": "United Kingdom"
|
||||
},
|
||||
"hasOfferCatalog": {
|
||||
"@type": "OfferCatalog",
|
||||
"name": "Data Services",
|
||||
"itemListElement": [
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Web Scraping Services",
|
||||
"description": "Professional web scraping and data extraction services"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Business Intelligence",
|
||||
"description": "Data analytics and business intelligence solutions"
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Data Processing",
|
||||
"description": "Data cleaning, transformation, and processing services"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "4.9",
|
||||
"reviewCount": "127",
|
||||
"bestRating": "5",
|
||||
"worstRating": "1"
|
||||
},
|
||||
"review": [
|
||||
{
|
||||
"@type": "Review",
|
||||
"reviewRating": {
|
||||
"@type": "Rating",
|
||||
"ratingValue": "5",
|
||||
"bestRating": "5"
|
||||
},
|
||||
"author": {
|
||||
"@type": "Person",
|
||||
"name": "Sarah Thompson"
|
||||
},
|
||||
"reviewBody": "UK Data Services transformed our pricing strategy completely. We now have real-time visibility into competitor pricing and can react instantly to market changes."
|
||||
}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- WebSite Schema for Search Box -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebSite",
|
||||
"@id": "https://ukdataservices.co.uk#website",
|
||||
"url": "https://ukdataservices.co.uk",
|
||||
"name": "UK Data Services",
|
||||
"description": "Professional web scraping and data analytics services",
|
||||
"publisher": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"potentialAction": {
|
||||
"@type": "SearchAction",
|
||||
"target": {
|
||||
"@type": "EntryPoint",
|
||||
"urlTemplate": "https://ukdataservices.co.uk/search?q={search_term_string}"
|
||||
},
|
||||
"query-input": "required name=search_term_string"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Service Schema -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Service",
|
||||
"name": "Professional Data Services UK",
|
||||
"description": "Comprehensive web scraping, data extraction, and business intelligence services for UK businesses",
|
||||
"provider": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"areaServed": {
|
||||
"@type": "Country",
|
||||
"name": "United Kingdom"
|
||||
},
|
||||
"hasOfferCatalog": {
|
||||
"@type": "OfferCatalog",
|
||||
"name": "Data Services Portfolio",
|
||||
"itemListElement": [
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Web Scraping",
|
||||
"description": "Automated data extraction from websites"
|
||||
},
|
||||
"priceRange": "£500-£50000"
|
||||
},
|
||||
{
|
||||
"@type": "Offer",
|
||||
"itemOffered": {
|
||||
"@type": "Service",
|
||||
"name": "Business Intelligence",
|
||||
"description": "Data analytics and reporting solutions"
|
||||
},
|
||||
"priceRange": "£1000-£25000"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- FAQ Schema for Featured Snippets -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "FAQPage",
|
||||
"mainEntity": [
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "What is web scraping and how can it benefit my business?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Web scraping is the automated process of extracting data from websites. It benefits businesses by providing competitive intelligence, automating data collection, enabling real-time price monitoring, and supporting strategic decision-making."
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "How much do web scraping services cost?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Web scraping costs vary based on complexity: Simple extraction £500-£2,000, Medium projects £2,000-£10,000, Enterprise solutions £10,000+. We provide custom quotes based on your specific requirements."
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "Is web scraping legal in the UK?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Yes, web scraping is legal in the UK when conducted properly. We ensure full compliance with UK Data Protection Act 2018, GDPR, website terms of service, and industry best practices."
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Skip to content link for accessibility -->
|
||||
|
||||
Reference in New Issue
Block a user