🔍 ENHANCED: Comprehensive Structured Data for Rich Snippets

This commit is contained in:
Peter
2025-06-07 17:13:28 +01:00
parent 1f86807961
commit ba1770e2c7
6 changed files with 812 additions and 13 deletions

131
quote.php
View File

@@ -39,6 +39,137 @@ $canonical_url = "https://ukdataservices.co.uk/quote.php";
<!-- Styles -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- Quote Page Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://ukdataservices.co.uk/quote.php#webpage",
"url": "https://ukdataservices.co.uk/quote.php",
"name": "Get Free Quote - UK Data Services",
"description": "Request a free, no-obligation quote for professional web scraping and data extraction services. Get detailed proposal within 24 hours.",
"mainEntity": {
"@type": "Service",
"name": "Data Extraction Quote Service",
"description": "Free consultation and detailed quote for web scraping and data analytics projects",
"provider": {
"@id": "https://ukdataservices.co.uk#organization"
},
"offers": {
"@type": "Offer",
"name": "Free Project Consultation",
"description": "Comprehensive project analysis and detailed quote within 24 hours",
"price": "0",
"priceCurrency": "GBP",
"availability": "https://schema.org/InStock",
"validFrom": "2024-01-01",
"priceValidUntil": "2025-12-31",
"areaServed": {
"@type": "Country",
"name": "United Kingdom"
}
}
}
}
</script>
<!-- Service Catalog Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "UK Data Services - Service Catalog",
"description": "Comprehensive data services available for quote",
"numberOfItems": 6,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "Service",
"name": "Web Scraping & Data Extraction",
"description": "Professional web scraping and data extraction services",
"offers": {
"@type": "Offer",
"priceRange": "£500-£50000",
"priceCurrency": "GBP"
}
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "Service",
"name": "Business Intelligence & Analytics",
"description": "Data analytics and business intelligence solutions",
"offers": {
"@type": "Offer",
"priceRange": "£1000-£25000",
"priceCurrency": "GBP"
}
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@type": "Service",
"name": "Data Processing & Cleaning",
"description": "Data cleaning, transformation, and quality assurance",
"offers": {
"@type": "Offer",
"priceRange": "£750-£15000",
"priceCurrency": "GBP"
}
}
},
{
"@type": "ListItem",
"position": 4,
"item": {
"@type": "Service",
"name": "Automation & APIs",
"description": "Custom automation solutions and API integrations",
"offers": {
"@type": "Offer",
"priceRange": "£2000-£20000",
"priceCurrency": "GBP"
}
}
},
{
"@type": "ListItem",
"position": 5,
"item": {
"@type": "Service",
"name": "Custom Development",
"description": "Bespoke data solutions and custom development",
"offers": {
"@type": "Offer",
"priceRange": "£5000-£50000",
"priceCurrency": "GBP"
}
}
},
{
"@type": "ListItem",
"position": 6,
"item": {
"@type": "Service",
"name": "Compliance & Security",
"description": "GDPR compliance and data security consulting",
"offers": {
"@type": "Offer",
"priceRange": "£1000-£10000",
"priceCurrency": "GBP"
}
}
}
]
}
</script>
<style>
.quote-hero {
padding: 120px 0 60px;