Complete UK spelling conversion and SEO optimization

This commit is contained in:
Peter
2025-06-07 12:58:04 +01:00
parent f120ac7d2f
commit f479019bce
10 changed files with 886 additions and 714 deletions

View File

@@ -96,11 +96,11 @@ $canonical_url = "https://ukdataservices.co.uk/about.php";
</div>
<div class="nav-menu" id="nav-menu">
<a href="/" class="nav-link">Home</a>
<a href="/#services" class="nav-link">Services</a>
<a href="case-studies.php" class="nav-link">Case Studies</a>
<a href="/#services" class="nav-link">Capabilities</a>
<a href="project-types.php" class="nav-link">Project Types</a>
<a href="about.php" class="nav-link">About</a>
<a href="/#contact" class="nav-link">Contact</a>
<a href="quote.php" class="nav-link cta-button">Get Quote</a>
<a href="quote.php" class="nav-link cta-button">Request Consultation</a>
</div>
<div class="nav-toggle" id="nav-toggle">
<span class="bar"></span>
@@ -124,10 +124,10 @@ $canonical_url = "https://ukdataservices.co.uk/about.php";
<div style="max-width: 800px; margin: 0 auto; text-align: center;">
<h2 style="margin-bottom: 30px;">Our Story</h2>
<p style="font-size: 1.2rem; line-height: 1.6; color: #666; margin-bottom: 40px;">
Founded in 2018, UK Data Services emerged from a simple observation: businesses were drowning in data opportunities but struggling to extract actionable insights. Our founders, experienced data scientists and engineers, recognized the gap between raw web data and business intelligence.
Founded in 2018, UK Data Services emerged from a simple observation: businesses were drowning in data opportunities but struggling to extract actionable insights. Our founders, experienced data scientists and engineers, recognised the gap between raw web data and business intelligence.
</p>
<p style="font-size: 1.1rem; line-height: 1.6; color: #666; margin-bottom: 40px;">
Today, we've evolved into a trusted provider of web scraping and data extraction services, having successfully delivered over 500 projects across industries including e-commerce, finance, property, manufacturing, and healthcare. Our commitment to accuracy, compliance, and innovation has made us the trusted choice for businesses ranging from startups to Fortune 500 companies.
Today, we've evolved into a trusted provider of web scraping and data extraction services, having successfully delivered over 500 projects across industries including e-commerce, finance, property, manufacturing, and healthcare. Our commitment to accuracy, compliance, and innovation has made us the trusted choice for businesses ranging from startups to FTSE companies.
</p>
</div>
</div>
@@ -224,7 +224,7 @@ $canonical_url = "https://ukdataservices.co.uk/about.php";
<div style="max-width: 800px; margin: 0 auto; text-align: center;">
<h2 style="margin-bottom: 30px;">Our Mission</h2>
<p style="font-size: 1.3rem; line-height: 1.6; color: #333; margin-bottom: 40px; font-weight: 500;">
"To democratize access to web data and transform how businesses make decisions through accurate, actionable, and ethically-sourced information."
"To democratise access to web data and transform how businesses make decisions through accurate, actionable, and ethically-sourced information."
</p>
<p style="font-size: 1.1rem; line-height: 1.6; color: #666;">
We believe that every business, regardless of size, should have access to the data insights that drive competitive advantage. Our mission is to bridge the gap between complex web data and practical business intelligence, enabling our clients to make informed decisions that drive growth and innovation.
@@ -263,7 +263,7 @@ $canonical_url = "https://ukdataservices.co.uk/about.php";
<ul>
<li><a href="/">Home</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="case-studies.php">Case Studies</a></li>
<li><a href="project-types.php">Project Types</a></li>
<li><a href="quote.php">Get Quote</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>

View File

@@ -1,682 +0,0 @@
<?php
// Enhanced security headers
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: DENY');
header('X-XSS-Protection: 1; mode=block');
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
header('Referrer-Policy: strict-origin-when-cross-origin');
$page_title = "Case Studies | UK Data Services - Real Client Success Stories";
$page_description = "Discover how UK Data Services has helped businesses across various industries with professional web scraping, data extraction, and business intelligence solutions.";
$canonical_url = "https://ukdataservices.co.uk/case-studies.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($page_title); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($page_description); ?>">
<meta name="keywords" content="data scraping case studies, web scraping success stories, business intelligence examples, UK data extraction projects">
<meta name="author" content="UK Data Services">
<meta name="robots" content="index, follow">
<link rel="canonical" href="<?php echo htmlspecialchars($canonical_url); ?>">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
<meta property="og:title" content="<?php echo htmlspecialchars($page_title); ?>">
<meta property="og:description" content="<?php echo htmlspecialchars($page_description); ?>">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/main.css">
<style>
.case-studies-hero {
padding: 120px 0 60px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
text-align: center;
}
.case-study-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
margin-bottom: 80px;
}
.case-study-card {
background: white;
border-radius: 16px;
padding: 40px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid #667eea;
}
.case-study-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.case-study-header {
display: flex;
align-items: center;
margin-bottom: 24px;
}
.industry-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16px;
color: white;
font-weight: 600;
}
.case-study-title {
font-size: 1.4rem;
font-weight: 600;
color: #1a1a1a;
margin: 0;
}
.case-study-subtitle {
color: #667eea;
font-weight: 500;
margin: 0;
}
.case-study-challenge {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin: 24px 0;
border-left: 3px solid #e74c3c;
}
.case-study-solution {
background: #f0f8ff;
padding: 20px;
border-radius: 8px;
margin: 24px 0;
border-left: 3px solid #667eea;
}
.case-study-results {
background: #f0fff4;
padding: 20px;
border-radius: 8px;
margin: 24px 0;
border-left: 3px solid #28a745;
}
.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 20px;
margin-top: 16px;
}
.result-metric {
text-align: center;
}
.metric-value {
font-size: 2rem;
font-weight: 700;
color: #28a745;
display: block;
}
.metric-label {
font-size: 0.9rem;
color: #666;
font-weight: 500;
}
.testimonial-section {
background: #f8f9fa;
padding: 80px 0;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.testimonial-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
position: relative;
}
.testimonial-quote {
font-size: 1.1rem;
line-height: 1.6;
color: #333;
margin-bottom: 20px;
font-style: italic;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
margin-right: 16px;
}
.author-info h4 {
margin: 0;
font-size: 1rem;
font-weight: 600;
color: #1a1a1a;
}
.author-info p {
margin: 4px 0 0;
font-size: 0.9rem;
color: #666;
}
.quote-mark {
position: absolute;
top: 20px;
right: 20px;
font-size: 3rem;
color: #667eea;
opacity: 0.3;
}
@media (max-width: 768px) {
.case-study-grid {
grid-template-columns: 1fr;
}
.case-study-card {
padding: 30px 20px;
}
.results-grid {
grid-template-columns: repeat(2, 1fr);
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="assets/images/logo.svg" alt="UK Data Services" class="logo">
</a>
</div>
<div class="nav-menu" id="nav-menu">
<a href="/" class="nav-link">Home</a>
<a href="/#services" class="nav-link">Services</a>
<a href="#case-studies" class="nav-link">Case Studies</a>
<a href="/#contact" class="nav-link">Contact</a>
<a href="quote.php" class="nav-link cta-button">Get Quote</a>
</div>
<div class="nav-toggle" id="nav-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="case-studies-hero">
<div class="container">
<h1>Client Success Stories</h1>
<p>Real results from businesses we've helped transform with professional data solutions</p>
</div>
</section>
<!-- Case Studies -->
<section id="case-studies" style="padding: 80px 0;">
<div class="container">
<div class="case-study-grid">
<!-- E-commerce Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">🛒</div>
<div>
<h3 class="case-study-title">UK Fashion Retailer</h3>
<p class="case-study-subtitle">Competitive Price Intelligence</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>A major UK fashion retailer was losing market share due to uncompetitive pricing. They needed real-time competitor pricing data across 15 major competitors for over 10,000 products daily.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We implemented automated web scraping across competitor websites, creating a real-time pricing dashboard with alerts for price changes and market positioning insights.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">23%</span>
<span class="metric-label">Revenue Increase</span>
</div>
<div class="result-metric">
<span class="metric-value">15%</span>
<span class="metric-label">Market Share Growth</span>
</div>
<div class="result-metric">
<span class="metric-value">10K+</span>
<span class="metric-label">Products Monitored</span>
</div>
<div class="result-metric">
<span class="metric-value">Real-time</span>
<span class="metric-label">Price Updates</span>
</div>
</div>
</div>
</div>
<!-- Property Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">🏠</div>
<div>
<h3 class="case-study-title">Property Investment Group</h3>
<p class="case-study-subtitle">Market Analysis & Lead Generation</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>A property investment company needed comprehensive market data from Rightmove, Zoopla, and OnTheMarket to identify undervalued properties and emerging market trends.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We built a sophisticated property data pipeline extracting listings, price histories, and market analytics, combined with demographic and transport data for investment scoring.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">£2.3M</span>
<span class="metric-label">Deals Closed</span>
</div>
<div class="result-metric">
<span class="metric-value">40%</span>
<span class="metric-label">Time Savings</span>
</div>
<div class="result-metric">
<span class="metric-value">250K+</span>
<span class="metric-label">Properties Analyzed</span>
</div>
<div class="result-metric">
<span class="metric-value">Daily</span>
<span class="metric-label">Market Reports</span>
</div>
</div>
</div>
</div>
<!-- Financial Services Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">📈</div>
<div>
<h3 class="case-study-title">Financial Services Firm</h3>
<p class="case-study-subtitle">Alternative Data Intelligence</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>An investment firm required alternative data sources including social media sentiment, news analytics, and economic indicators to enhance their trading algorithms.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We developed a multi-source data aggregation system pulling from financial news sites, social platforms, and government databases with real-time sentiment analysis.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">12%</span>
<span class="metric-label">Alpha Generation</span>
</div>
<div class="result-metric">
<span class="metric-value">85%</span>
<span class="metric-label">Prediction Accuracy</span>
</div>
<div class="result-metric">
<span class="metric-value">50+</span>
<span class="metric-label">Data Sources</span>
</div>
<div class="result-metric">
<span class="metric-value">24/7</span>
<span class="metric-label">Monitoring</span>
</div>
</div>
</div>
</div>
<!-- Manufacturing Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">🏭</div>
<div>
<h3 class="case-study-title">Manufacturing Company</h3>
<p class="case-study-subtitle">Supply Chain Intelligence</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>A UK manufacturer needed to track raw material prices and supplier availability across global markets to optimize procurement and reduce costs.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We created an automated system monitoring commodity exchanges, supplier websites, and trade publications to provide real-time supply chain intelligence.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">18%</span>
<span class="metric-label">Cost Reduction</span>
</div>
<div class="result-metric">
<span class="metric-value">30%</span>
<span class="metric-label">Faster Procurement</span>
</div>
<div class="result-metric">
<span class="metric-value">500+</span>
<span class="metric-label">Suppliers Monitored</span>
</div>
<div class="result-metric">
<span class="metric-value">Global</span>
<span class="metric-label">Market Coverage</span>
</div>
</div>
</div>
</div>
<!-- Travel Industry Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">✈️</div>
<div>
<h3 class="case-study-title">Travel Technology Startup</h3>
<p class="case-study-subtitle">Dynamic Pricing Intelligence</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>A travel startup needed comprehensive flight and hotel pricing data from major booking platforms to power their price comparison and prediction algorithms.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We built a scalable scraping infrastructure collecting pricing data from 25+ travel sites, with advanced rate limiting and anti-detection measures.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">5M+</span>
<span class="metric-label">Data Points Daily</span>
</div>
<div class="result-metric">
<span class="metric-value">300%</span>
<span class="metric-label">User Growth</span>
</div>
<div class="result-metric">
<span class="metric-value">99.8%</span>
<span class="metric-label">Uptime</span>
</div>
<div class="result-metric">
<span class="metric-value">£1.2M</span>
<span class="metric-label">Funding Raised</span>
</div>
</div>
</div>
</div>
<!-- Healthcare Case Study -->
<div class="case-study-card">
<div class="case-study-header">
<div class="industry-icon">🏥</div>
<div>
<h3 class="case-study-title">Healthcare Analytics Firm</h3>
<p class="case-study-subtitle">Medical Research Data</p>
</div>
</div>
<div class="case-study-challenge">
<h4><strong>Challenge:</strong></h4>
<p>A healthcare analytics company required structured data from medical research databases and regulatory filings to support pharmaceutical market analysis.</p>
</div>
<div class="case-study-solution">
<h4><strong>Solution:</strong></h4>
<p>We developed GDPR-compliant data extraction processes for medical databases, with careful attention to data privacy and regulatory compliance requirements.</p>
</div>
<div class="case-study-results">
<h4><strong>Results:</strong></h4>
<div class="results-grid">
<div class="result-metric">
<span class="metric-value">10K+</span>
<span class="metric-label">Studies Analyzed</span>
</div>
<div class="result-metric">
<span class="metric-value">100%</span>
<span class="metric-label">GDPR Compliance</span>
</div>
<div class="result-metric">
<span class="metric-value">60%</span>
<span class="metric-label">Research Speed</span>
</div>
<div class="result-metric">
<span class="metric-value">Monthly</span>
<span class="metric-label">Reports</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonial-section">
<div class="container">
<div class="section-header">
<h2>What Our Clients Say</h2>
<p>Hear from businesses who have transformed their operations with our data solutions</p>
</div>
<div class="testimonial-grid">
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">UK Data Services transformed our pricing strategy completely. The real-time competitor intelligence they provided helped us increase revenue by 23% in just six months. Their team is professional, responsive, and truly understands e-commerce challenges.</p>
<div class="testimonial-author">
<div class="author-avatar">SM</div>
<div class="author-info">
<h4>Sarah Mitchell</h4>
<p>Head of E-commerce, Fashion Retailer</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">The property data insights we receive have revolutionized our investment decisions. We've identified undervalued opportunities that we would have missed otherwise. The ROI on their service has been phenomenal.</p>
<div class="testimonial-author">
<div class="author-avatar">JT</div>
<div class="author-info">
<h4>James Thompson</h4>
<p>Investment Director, Property Group</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">Working with UK Data Services has been a game-changer for our alternative data strategy. Their technical expertise and attention to compliance requirements gave us confidence in our data-driven trading approach.</p>
<div class="testimonial-author">
<div class="author-avatar">AR</div>
<div class="author-info">
<h4>Andrew Roberts</h4>
<p>Chief Data Officer, Investment Firm</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">The supply chain intelligence platform they built for us has reduced our procurement costs by 18%. The real-time alerts and market insights help us make better sourcing decisions every day.</p>
<div class="testimonial-author">
<div class="author-avatar">LW</div>
<div class="author-info">
<h4>Lisa Wang</h4>
<p>Procurement Manager, Manufacturing</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">Their travel data infrastructure scaled perfectly with our growth. From startup to processing 5 million data points daily, they've been reliable partners throughout our journey.</p>
<div class="testimonial-author">
<div class="author-avatar">MP</div>
<div class="author-info">
<h4>Michael Park</h4>
<p>CTO, Travel Technology Startup</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote-mark">"</div>
<p class="testimonial-quote">The level of compliance and attention to data privacy requirements in the healthcare sector is exactly what we needed. Professional, thorough, and reliable - couldn't ask for better partners.</p>
<div class="testimonial-author">
<div class="author-avatar">RB</div>
<div class="author-info">
<h4>Rachel Brown</h4>
<p>Data Scientist, Healthcare Analytics</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section style="padding: 80px 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); text-align: center; color: white;">
<div class="container">
<h2 style="color: white; margin-bottom: 20px;">Ready to Transform Your Business with Data?</h2>
<p style="font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9;">Join hundreds of successful businesses who trust UK Data Services with their data needs</p>
<div style="display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;">
<a href="quote.php" class="btn" style="background: white; color: #667eea;">Get Free Quote</a>
<a href="/#contact" class="btn" style="background: transparent; color: white; border: 2px solid white;">Contact Us</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="assets/images/logo-white.svg" alt="UK Data Services">
</div>
<p>Professional data solutions for modern businesses. Transform your operations with accurate, actionable insights.</p>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="/#services">Web Scraping</a></li>
<li><a href="/#services">Business Intelligence</a></li>
<li><a href="/#services">Data Processing</a></li>
<li><a href="/#services">API Development</a></li>
<li><a href="/#services">Custom Development</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul>
<li><a href="/">Home</a></li>
<li><a href="case-studies.php">Case Studies</a></li>
<li><a href="quote.php">Get Quote</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Phone: +44 1692 689150</li>
<li>Email: info@ukdataservices.co.uk</li>
<li>Service Area: UK & International</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; <?php echo date('Y'); ?> UK Data Services. All rights reserved.</p>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><img src="assets/images/icon-linkedin.svg" alt="LinkedIn"></a>
<a href="#" aria-label="Twitter"><img src="assets/images/icon-twitter.svg" alt="Twitter"></a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/main.js"></script>
</body>
</html>

View File

@@ -262,8 +262,8 @@ try {
<div class="cta">
<h3>What happens next?</h3>
<p>• Our team will analyze your data requirements<br>
• We will prepare a customized solution proposal<br>
<p>• Our team will analyse your data requirements<br>
• We will prepare a customised solution proposal<br>
• You will receive a detailed quote and timeline<br>
• We can schedule a consultation call if needed</p>
</div>

View File

@@ -13,8 +13,8 @@ $page_description = "Leading UK provider of web scraping, data extraction, busin
$canonical_url = "https://ukdataservices.co.uk/";
$keywords = "web scraping UK, data extraction services, business intelligence, competitive analysis, price monitoring, data analytics, market research, web data mining";
$author = "UK Data Services";
$og_image = "https://ukdataservices.co.uk/assets/images/og-image.jpg";
$twitter_card_image = "https://ukdataservices.co.uk/assets/images/twitter-card.jpg";
$og_image = "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png";
$twitter_card_image = "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png";
?>
<!DOCTYPE html>
<html lang="en">
@@ -22,8 +22,8 @@ $twitter_card_image = "https://ukdataservices.co.uk/assets/images/twitter-card.j
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($page_title); ?></title>
<meta name="description" content="We offer Web Scraping Services in UK. Our top rated website scraping services and data extraction services in the UK! We Provide Premier and Affordable Web Scraping Services!">
<meta name="keywords" content="web scraping services, web scraping uk, web scraping services uk, data scraping uk">
<meta name="description" content="<?php echo htmlspecialchars($page_description); ?>">
<meta name="keywords" content="<?php echo htmlspecialchars($keywords); ?>">
<meta name="author" content="<?php echo htmlspecialchars($author); ?>">
<meta name="google-site-verification" content="la6e0_PDdHFkUn8NbHI-cMofozMcxtgrf73zwqKz6Ec" />
<meta name="robots" content="index, follow">
@@ -107,7 +107,7 @@ $twitter_card_image = "https://ukdataservices.co.uk/assets/images/twitter-card.j
"@type": "Organization",
"name": "UK Data Services",
"url": "https://ukdataservices.co.uk",
"logo": "https://ukdataservices.co.uk/assets/images/logo.png",
"logo": "https://ukdataservices.co.uk/assets/images/ukds-main-logo.png",
"description": "Professional web scraping and data analytics services in the UK",
"address": {
"@type": "PostalAddress",
@@ -143,7 +143,7 @@ $twitter_card_image = "https://ukdataservices.co.uk/assets/images/twitter-card.j
<div class="nav-menu" id="nav-menu">
<a href="#home" class="nav-link">Home</a>
<a href="#services" class="nav-link">Capabilities</a>
<a href="case-studies.php" class="nav-link">Case Studies</a>
<a href="project-types.php" class="nav-link">Project Types</a>
<a href="about.php" class="nav-link">About</a>
<a href="#contact" class="nav-link">Contact</a>
<a href="quote.php" class="nav-link cta-button">Request Consultation</a>
@@ -619,7 +619,7 @@ $twitter_card_image = "https://ukdataservices.co.uk/assets/images/twitter-card.j
<h3>Company Information</h3>
<ul>
<li><a href="about.php">About UK Data Services</a></li>
<li><a href="case-studies.php">Client Case Studies</a></li>
<li><a href="project-types.php">Project Types</a></li>
<li><a href="/#contact">Contact & Enquiries</a></li>
<li><a href="quote.php">Request Consultation</a></li>
</ul>

735
project-types.php Normal file
View File

@@ -0,0 +1,735 @@
<?php
// Enhanced security headers
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: DENY');
header('X-XSS-Protection: 1; mode=block');
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
header('Referrer-Policy: strict-origin-when-cross-origin');
$page_title = "Project Types | UK Data Services - Development Portfolio";
$page_description = "Discover the diverse range of C# development projects we've undertaken, from web scraping frameworks to business intelligence systems and environmental data processing.";
$canonical_url = "https://ukdataservices.co.uk/project-types.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($page_title); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($page_description); ?>">
<meta name="keywords" content="C# development, web scraping projects, business intelligence, document processing, environmental data systems">
<meta name="author" content="UK Data Services">
<meta name="robots" content="index, follow">
<link rel="canonical" href="<?php echo htmlspecialchars($canonical_url); ?>">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
<style>
.project-types-hero {
padding: 120px 0 60px;
background: linear-gradient(135deg, #252d3b 0%, #144784 100%);
text-align: center;
color: white;
}
.project-category {
padding: 60px 0;
border-bottom: 1px solid #e1e5e9;
}
.project-category:nth-child(even) {
background: #f8f9fa;
}
.project-category h2 {
color: #144784;
margin-bottom: 20px;
font-size: 2.2rem;
}
.project-category h3 {
color: #179e83;
margin-bottom: 16px;
font-size: 1.4rem;
}
.project-description {
font-size: 1.1rem;
line-height: 1.6;
color: #666;
margin-bottom: 25px;
}
.project-features {
list-style: none;
padding: 0;
margin: 25px 0;
}
.project-features li {
padding: 8px 0;
color: #555;
position: relative;
padding-left: 25px;
}
.project-features li:before {
content: "✓";
color: #179e83;
font-weight: bold;
position: absolute;
left: 0;
top: 8px;
}
.tech-tags {
margin-top: 20px;
}
.tech-tag {
display: inline-block;
background: #179e83;
color: white;
padding: 6px 12px;
border-radius: 20px;
font-size: 0.9rem;
margin: 4px 8px 4px 0;
}
.capabilities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin: 40px 0;
}
.capability-card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border-left: 4px solid #179e83;
}
.industry-section {
background: linear-gradient(135deg, #144784 0%, #179e83 100%);
color: white;
padding: 80px 0;
}
.industry-section .section-header h2 {
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.industry-section .section-header p {
color: rgba(255, 255, 255, 0.95);
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
font-size: 1.1rem;
}
.industry-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin: 40px 0;
}
.industry-card {
background: rgba(255, 255, 255, 0.15);
padding: 25px;
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.industry-card h3 {
color: white;
font-weight: 600;
margin-bottom: 12px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.industry-card p {
color: rgba(255, 255, 255, 0.9);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
line-height: 1.5;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="assets/images/ukds-main-logo.png" alt="UK Data Services" class="logo">
</a>
</div>
<div class="nav-menu" id="nav-menu">
<a href="/" class="nav-link">Home</a>
<a href="/#services" class="nav-link">Capabilities</a>
<a href="project-types.php" class="nav-link">Project Types</a>
<a href="about.php" class="nav-link">About</a>
<a href="/#contact" class="nav-link">Contact</a>
<a href="quote.php" class="nav-link cta-button">Request Consultation</a>
</div>
<div class="nav-toggle" id="nav-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="project-types-hero">
<div class="container">
<h1>Types of Projects We Have Undertaken</h1>
<p>Our development team has extensive experience across a diverse range of C# applications, from specialised data extraction tools to enterprise-level automation systems.</p>
</div>
</section>
<!-- Web Scraping & Data Extraction -->
<section class="project-category">
<div class="container">
<h2>Web Scraping & Data Extraction Frameworks</h2>
<p class="project-description">
We've developed sophisticated multi-threaded web scraping solutions that can handle large-scale data extraction from complex websites. Our frameworks include robust, enterprise-grade systems capable of processing thousands of web pages with advanced error handling and recovery mechanisms.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>Enterprise Web Scraping Tools</h3>
<p>Robust, multi-threaded scraping systems capable of processing thousands of web pages using Selenium WebDriver, Playwright, and custom HTTP clients with advanced proxy rotation and browser automation.</p>
</div>
<div class="capability-card">
<h3>Trade Show & Exhibition Data Mining</h3>
<p>Specialised tools for extracting exhibitor information from major industry events, handling dynamic content loading, API integrations, and complex authentication systems.</p>
</div>
<div class="capability-card">
<h3>Professional Directory Scrapers</h3>
<p>Systems for gathering professional contact information from industry directories and membership organisations with comprehensive data validation and deduplication.</p>
</div>
<div class="capability-card">
<h3>Real Estate & Property Data Collectors</h3>
<p>Tools for extracting property listings, agent information, and market data from various property platforms with real-time monitoring and automated reporting.</p>
</div>
<div class="capability-card">
<h3>E-commerce Price Monitoring</h3>
<p>Advanced marketplace monitoring systems for tracking pricing, inventory, and competitive intelligence across multiple platforms with automated alerts and trend analysis.</p>
</div>
<div class="capability-card">
<h3>Social Media & Professional Networks</h3>
<p>Specialised scrapers for extracting professional profiles, company information, and network data from platforms like LinkedIn with sophisticated anti-detection mechanisms.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">Selenium WebDriver</span>
<span class="tech-tag">Playwright</span>
<span class="tech-tag">Multi-threading</span>
<span class="tech-tag">Proxy Rotation</span>
<span class="tech-tag">Browser Automation</span>
<span class="tech-tag">API Integration</span>
</div>
</div>
</section>
<!-- Document Processing & AI Integration -->
<section class="project-category">
<div class="container">
<h2>Document Processing & AI Integration</h2>
<p class="project-description">
We've built advanced document analysis systems that combine traditional pattern matching with modern machine learning techniques, particularly specializing in environmental and technical document processing.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>PDF Data Extraction Systems</h3>
<p>Sophisticated tools for extracting structured data from complex PDF documents, particularly in environmental and technical sectors with advanced OCR capabilities.</p>
</div>
<div class="capability-card">
<h3>Chemical Analysis Report Processors</h3>
<p>Specialised systems for parsing environmental contamination reports and laboratory results with ML-based classification for automatic data categorisation.</p>
</div>
<div class="capability-card">
<h3>Machine Learning Classification</h3>
<p>Integration of ML models for automatic document classification and data extraction with continuous learning capabilities and accuracy improvement.</p>
</div>
<div class="capability-card">
<h3>GIS Data Generation</h3>
<p>Tools that convert extracted data into geographic information systems formats for mapping and analysis with spatial data processing capabilities.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">iText PDF Processing</span>
<span class="tech-tag">Microsoft ML.NET</span>
<span class="tech-tag">Computer Vision</span>
<span class="tech-tag">Pattern Recognition</span>
<span class="tech-tag">GIS Integration</span>
</div>
</div>
</section>
<!-- Business Intelligence & Financial Tracking -->
<section class="project-category">
<div class="container">
<h2>Business Intelligence & Financial Tracking</h2>
<p class="project-description">
We've developed comprehensive systems for tracking and analyzing business performance with automated data collection, real-time monitoring, and sophisticated reporting capabilities.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>Investment Portfolio Trackers</h3>
<p>Automated systems for monitoring investment performance with real-time data collection, historical analysis, and performance benchmarking capabilities.</p>
</div>
<div class="capability-card">
<h3>Performance Reporting Tools</h3>
<p>Automated generation of daily, weekly, and monthly performance reports with email distribution, custom dashboards, and executive summaries.</p>
</div>
<div class="capability-card">
<h3>Financial Data Integration</h3>
<p>Systems for consolidating data from multiple financial sources and APIs with real-time synchronization and data validation mechanisms.</p>
</div>
<div class="capability-card">
<h3>Compliance Monitoring</h3>
<p>Tools for ensuring regulatory compliance and audit trail maintenance with automated alerts and comprehensive logging systems.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">Entity Framework</span>
<span class="tech-tag">SQLite</span>
<span class="tech-tag">Financial APIs</span>
<span class="tech-tag">Email Automation</span>
<span class="tech-tag">Reporting Services</span>
</div>
</div>
</section>
<!-- Environmental & Planning Data Systems -->
<section class="project-category">
<div class="container">
<h2>Environmental & Planning Data Systems</h2>
<p class="project-description">
We've created specialised tools for the environmental and planning sectors, including automated planning portal integration and environmental compliance reporting systems.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>Planning Portal Integration</h3>
<p>Systems for automatically downloading and processing planning applications and associated documents with intelligent document classification and metadata extraction.</p>
</div>
<div class="capability-card">
<h3>Environmental Data Processing</h3>
<p>Tools for analyzing soil contamination data and generating compliance reports with automated quality assurance and regulatory validation.</p>
</div>
<div class="capability-card">
<h3>Mapping & Visualization</h3>
<p>Applications that convert environmental data into interactive maps and visual reports with advanced spatial analysis capabilities.</p>
</div>
<div class="capability-card">
<h3>Regulatory Compliance Tools</h3>
<p>Systems for ensuring environmental data meets regulatory standards and reporting requirements with automated compliance checking.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">Planning Portal APIs</span>
<span class="tech-tag">Environmental Data Standards</span>
<span class="tech-tag">Mapping Libraries</span>
<span class="tech-tag">Compliance Frameworks</span>
</div>
</div>
</section>
<!-- Data Processing & Integration Systems -->
<section class="project-category">
<div class="container">
<h2>Data Processing & Integration Systems</h2>
<p class="project-description">
Sophisticated data transformation and integration solutions that handle complex data workflows, from CSV processing and database migration to real-time data pipeline management.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>CSV & Excel Data Processing</h3>
<p>Advanced systems for processing large CSV files, data transformation, deduplication, and contact extraction with intelligent field mapping and validation.</p>
</div>
<div class="capability-card">
<h3>Database Migration & ETL</h3>
<p>Tools for migrating data between different database systems, XML to SQL conversion, and complex ETL processes with data integrity validation.</p>
</div>
<div class="capability-card">
<h3>Contact Data Enrichment</h3>
<p>Sophisticated contact processing systems that extract, validate, and enrich contact information from multiple sources with advanced deduplication algorithms.</p>
</div>
<div class="capability-card">
<h3>Email & Communication Analysis</h3>
<p>Advanced email processing systems for analyzing communication patterns, out-of-office detection, and automated email management workflows.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">CsvHelper</span>
<span class="tech-tag">Entity Framework</span>
<span class="tech-tag">Data Transformation</span>
<span class="tech-tag">ETL Processes</span>
<span class="tech-tag">Data Validation</span>
</div>
</div>
</section>
<!-- Machine Learning & AI Applications -->
<section class="project-category">
<div class="container">
<h2>Machine Learning & AI Applications</h2>
<p class="project-description">
Advanced AI and machine learning solutions that leverage cutting-edge algorithms for predictive analytics, document processing, and automated decision-making systems.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>CV & Resume Processing</h3>
<p>AI-powered systems for parsing resumes, extracting candidate information, and matching job requirements with applicant profiles using NLP techniques.</p>
</div>
<div class="capability-card">
<h3>Job Matching Algorithms</h3>
<p>Sophisticated matching engines that analyse job descriptions and candidate profiles to provide intelligent recruitment recommendations.</p>
</div>
<div class="capability-card">
<h3>Predictive Analytics</h3>
<p>Machine learning models for various business applications including trend prediction, risk assessment, and automated classification systems.</p>
</div>
<div class="capability-card">
<h3>Document Classification & Processing</h3>
<p>Advanced ML systems for automated document categorisation, content extraction, and intelligent data processing with continuous learning capabilities.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">ML.NET</span>
<span class="tech-tag">TensorFlow</span>
<span class="tech-tag">Logistic Regression</span>
<span class="tech-tag">NLP</span>
<span class="tech-tag">Cross-Validation</span>
</div>
</div>
</section>
<!-- AWS Lambda & Cloud Applications -->
<section class="project-category">
<div class="container">
<h2>AWS Lambda & Cloud Applications</h2>
<p class="project-description">
Serverless applications and cloud-native solutions that provide scalable, cost-effective automation for various business processes and notification systems.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>Automated Notification Systems</h3>
<p>AWS Lambda functions for automated reminders and notifications, including bin collection alerts, appointment reminders, and scheduled communications.</p>
</div>
<div class="capability-card">
<h3>Serverless Data Processing</h3>
<p>Cloud-based data processing pipelines that automatically scale based on demand, processing large datasets without infrastructure management.</p>
</div>
<div class="capability-card">
<h3>Event-Driven Architecture</h3>
<p>Microservices and event-driven systems that respond to triggers and automate business processes in real-time.</p>
</div>
<div class="capability-card">
<h3>Cost-Optimised Cloud Solutions</h3>
<p>Serverless applications that minimise operational costs while providing enterprise-grade reliability and scalability.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">AWS Lambda</span>
<span class="tech-tag">Serverless</span>
<span class="tech-tag">Event-Driven</span>
<span class="tech-tag">Microservices</span>
<span class="tech-tag">Cloud Native</span>
</div>
</div>
</section>
<!-- Web Applications & APIs -->
<section class="project-category">
<div class="container">
<h2>Web Applications & APIs</h2>
<p class="project-description">
Full-stack web applications and API development using modern frameworks, delivering responsive user interfaces and robust backend services.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>ASP.NET Core Applications</h3>
<p>Modern web applications built with ASP.NET Core, featuring responsive design, secure authentication, and scalable architecture.</p>
</div>
<div class="capability-card">
<h3>RESTful API Development</h3>
<p>Comprehensive API solutions with proper documentation, authentication, rate limiting, and integration capabilities for third-party systems.</p>
</div>
<div class="capability-card">
<h3>Real-Time Web Applications</h3>
<p>Interactive web applications with real-time features using SignalR, WebSockets, and modern JavaScript frameworks.</p>
</div>
<div class="capability-card">
<h3>Enterprise Web Portals</h3>
<p>Secure, scalable web portals for business operations including user management, role-based access, and integrated reporting.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">ASP.NET Core</span>
<span class="tech-tag">Web APIs</span>
<span class="tech-tag">SignalR</span>
<span class="tech-tag">Razor Pages</span>
<span class="tech-tag">Authentication</span>
</div>
</div>
</section>
<!-- Automation & Workflow Systems -->
<section class="project-category">
<div class="container">
<h2>Automation & Workflow Systems</h2>
<p class="project-description">
Intelligent automation solutions that streamline business processes, reduce manual effort, and improve operational efficiency through sophisticated workflow management.
</p>
<div class="capabilities-grid">
<div class="capability-card">
<h3>Email Processing Automation</h3>
<p>Advanced email sorting, filtering, and processing systems that automatically categorise communications and trigger appropriate responses.</p>
</div>
<div class="capability-card">
<h3>Scheduled Task Management</h3>
<p>Automated scheduling systems for data collection, report generation, and system maintenance with comprehensive error handling and logging.</p>
</div>
<div class="capability-card">
<h3>Business Process Automation</h3>
<p>End-to-end workflow automation that connects multiple systems and automates complex business processes with minimal human intervention.</p>
</div>
<div class="capability-card">
<h3>Monitoring & Alert Systems</h3>
<p>Proactive monitoring solutions that track system health, data quality, and business metrics with intelligent alerting mechanisms.</p>
</div>
</div>
<div class="tech-tags">
<span class="tech-tag">Task Scheduling</span>
<span class="tech-tag">Email Processing</span>
<span class="tech-tag">Workflow Automation</span>
<span class="tech-tag">System Integration</span>
<span class="tech-tag">Monitoring</span>
</div>
</div>
</section>
<!-- Core Technical Capabilities -->
<section class="project-category">
<div class="container">
<h2>Core Technical Capabilities</h2>
<p class="project-description">
Across all our projects, we consistently deliver solutions with enterprise-grade reliability, performance, and security standards.
</p>
<ul class="project-features">
<li><strong>Robust Error Handling:</strong> Comprehensive logging and error recovery mechanisms</li>
<li><strong>Multi-threading & Performance:</strong> Optimised applications capable of handling high-volume data processing</li>
<li><strong>Database Integration:</strong> Seamless integration with various database systems including SQL Server, SQLite, and cloud databases</li>
<li><strong>API Development & Integration:</strong> Custom APIs and integration with third-party services</li>
<li><strong>Modern .NET Technologies:</strong> Utilisation of the latest .NET frameworks and C# language features</li>
<li><strong>Security & Compliance:</strong> Implementation of security best practices and compliance with industry standards</li>
</ul>
</div>
</section>
<!-- Industry Expertise -->
<section class="industry-section">
<div class="container">
<div class="section-header">
<h2>Industry Expertise</h2>
<p>Our development experience spans multiple industries with deep understanding of sector-specific requirements</p>
</div>
<div class="industry-grid">
<div class="industry-card">
<h3>Environmental Consulting</h3>
<p>Contaminated land assessment, environmental compliance, and regulatory reporting systems</p>
</div>
<div class="industry-card">
<h3>Financial Services</h3>
<p>Investment management, portfolio tracking, and financial data integration solutions</p>
</div>
<div class="industry-card">
<h3>Real Estate & Property</h3>
<p>Property management, market analysis, and investment research platforms</p>
</div>
<div class="industry-card">
<h3>Healthcare & Medical</h3>
<p>Practice management, patient data systems, and medical compliance solutions</p>
</div>
<div class="industry-card">
<h3>Manufacturing & Industrial</h3>
<p>Process optimisation, production tracking, and industrial automation systems</p>
</div>
<div class="industry-card">
<h3>Professional Services</h3>
<p>Trade organisations, professional directories, and membership management systems</p>
</div>
<div class="industry-card">
<h3>Event Management</h3>
<p>Exhibition services, attendee management, and event data processing solutions</p>
</div>
<div class="industry-card">
<h3>E-commerce & Retail</h3>
<p>Pricing intelligence, inventory management, and marketplace monitoring tools</p>
</div>
<div class="industry-card">
<h3>Recruitment & HR</h3>
<p>CV processing systems, job matching algorithms, and candidate management platforms</p>
</div>
<div class="industry-card">
<h3>Automotive & Parts</h3>
<p>Parts catalog management, inventory tracking, and automotive data processing systems</p>
</div>
<div class="industry-card">
<h3>Local Government & Services</h3>
<p>Waste collection systems, council data management, and citizen service automation</p>
</div>
<div class="industry-card">
<h3>Marketing & Communications</h3>
<p>Email campaign analysis, communication workflow automation, and marketing data processing</p>
</div>
</div>
<div style="text-align: center; margin-top: 40px;">
<p style="font-size: 1.2rem; opacity: 0.95; color: white; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); line-height: 1.6; max-width: 800px; margin: 0 auto;">
Each project is approached with a deep understanding of the specific industry requirements, regulatory compliance needs, and business objectives. We pride ourselves on delivering solutions that not only meet technical specifications but also provide genuine business value and operational efficiency improvements.
</p>
</div>
</div>
</section>
<!-- Call to Action -->
<section style="padding: 80px 0; background: #f8f9fa; text-align: center;">
<div class="container">
<h2 style="margin-bottom: 20px;">Ready to Discuss Your Project?</h2>
<p style="font-size: 1.2rem; color: #666; margin-bottom: 40px;">
Let's explore how our expertise can help transform your business requirements into efficient, reliable solutions
</p>
<div style="display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;">
<a href="quote.php" class="btn btn-primary">Request Consultation</a>
<a href="/#contact" class="btn btn-secondary">Contact Us</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<img src="assets/images/logo-white.svg" alt="UK Data Services">
</div>
<p>Enterprise data intelligence solutions for modern British business. Transform your operations with accurate, actionable insights and regulatory-compliant data services.</p>
</div>
<div class="footer-section">
<h3>Enterprise Services</h3>
<ul>
<li><a href="/#services">Web Intelligence & Monitoring</a></li>
<li><a href="/#services">Technology Platform Solutions</a></li>
<li><a href="/#services">Data Management Services</a></li>
<li><a href="/#services">Process Automation & APIs</a></li>
<li><a href="/#services">Custom Development</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company Information</h3>
<ul>
<li><a href="about.php">About UK Data Services</a></li>
<li><a href="project-types.php">Project Types</a></li>
<li><a href="/#contact">Contact & Enquiries</a></li>
<li><a href="quote.php">Request Consultation</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Legal</h3>
<ul>
<li><a href="privacy-policy.php">Privacy Policy</a></li>
<li><a href="terms-of-service.php">Terms of Service</a></li>
<li><a href="cookie-policy.php">Cookie Policy</a></li>
<li><a href="gdpr-compliance.php">GDPR Compliance</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; <?php echo date('Y'); ?> UK Data Services. All rights reserved.</p>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><img src="assets/images/icon-linkedin.svg" alt="LinkedIn"></a>
<a href="#" aria-label="Twitter"><img src="assets/images/icon-twitter.svg" alt="Twitter"></a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/main.js"></script>
</body>
</html>

View File

@@ -340,7 +340,7 @@ try {
<div class="cta-box">
<h3>⏱️ What Happens Next?</h3>
<p>Our data specialists will analyze your requirements and prepare a comprehensive proposal within <strong>24 hours</strong>.</p>
<p>Our data specialists will analyse your requirements and prepare a comprehensive proposal within <strong>24 hours</strong>.</p>
</div>
<div class="next-steps">

View File

@@ -207,16 +207,16 @@ $canonical_url = "https://ukdataservices.co.uk/quote.php";
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="assets/images/logo.svg" alt="UK Data Services" class="logo">
<img src="assets/images/ukds-main-logo.png" alt="UK Data Services" class="logo">
</a>
</div>
<div class="nav-menu" id="nav-menu">
<a href="/" class="nav-link">Home</a>
<a href="/#services" class="nav-link">Services</a>
<a href="/#process" class="nav-link">Process</a>
<a href="/#why-us" class="nav-link">Why Choose Us</a>
<a href="/#services" class="nav-link">Capabilities</a>
<a href="project-types.php" class="nav-link">Project Types</a>
<a href="about.php" class="nav-link">About</a>
<a href="/#contact" class="nav-link">Contact</a>
<a href="quote.php" class="nav-link cta-button">Get Quote</a>
<a href="quote.php" class="nav-link cta-button">Request Consultation</a>
</div>
<div class="nav-toggle" id="nav-toggle">
<span class="bar"></span>

View File

@@ -19,6 +19,7 @@ Disallow: /quote-handler.php
# Sitemap location
Sitemap: https://ukdataservices.co.uk/sitemap.xml
Sitemap: https://ukdataservices.co.uk/sitemap.php
# Crawl delay to be respectful
Crawl-delay: 1

87
sitemap.php Normal file
View File

@@ -0,0 +1,87 @@
<?php
header('Content-Type: application/xml; charset=UTF-8');
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<!-- Homepage -->
<url>
<loc>https://ukdataservices.co.uk/</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<!-- About Page -->
<url>
<loc>https://ukdataservices.co.uk/about.php</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
<!-- Project Types Page -->
<url>
<loc>https://ukdataservices.co.uk/project-types.php</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Quote Page -->
<url>
<loc>https://ukdataservices.co.uk/quote.php</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
<!-- Services Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#services</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Process Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#process</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<!-- Why Choose Us Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#why-us</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<!-- Contact Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#contact</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Key Images for Image SEO -->
<url>
<loc>https://ukdataservices.co.uk/</loc>
<image:image>
<image:loc>https://ukdataservices.co.uk/assets/images/ukds-main-logo.png</image:loc>
<image:caption>UK Data Services Logo</image:caption>
<image:title>UK Data Services - Professional Web Scraping and Data Analytics</image:title>
</image:image>
<image:image>
<image:loc>https://ukdataservices.co.uk/assets/images/hero-data-analytics.svg</image:loc>
<image:caption>Data Analytics and Web Scraping Services</image:caption>
<image:title>Enterprise Data Solutions</image:title>
</image:image>
</url>
</urlset>

View File

@@ -5,49 +5,80 @@
<!-- Homepage -->
<url>
<loc>https://ukdataservices.co.uk/</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<!-- About Page -->
<url>
<loc>https://ukdataservices.co.uk/about.php</loc>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
<!-- Project Types Page -->
<url>
<loc>https://ukdataservices.co.uk/project-types.php</loc>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Quote Page -->
<url>
<loc>https://ukdataservices.co.uk/quote.php</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.9</priority>
</url>
<!-- Services (anchor links from homepage) -->
<!-- Services Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#services</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Process -->
<!-- Process Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#process</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<!-- Why Choose Us -->
<!-- Why Choose Us Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#why-us</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<!-- Contact -->
<!-- Contact Section (Homepage) -->
<url>
<loc>https://ukdataservices.co.uk/#contact</loc>
<lastmod><?php echo date('Y-m-d'); ?></lastmod>
<lastmod>2025-06-07</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<!-- Key Images for Image SEO -->
<url>
<loc>https://ukdataservices.co.uk/</loc>
<image:image>
<image:loc>https://ukdataservices.co.uk/assets/images/ukds-main-logo.png</image:loc>
<image:caption>UK Data Services Logo</image:caption>
<image:title>UK Data Services - Professional Web Scraping and Data Analytics</image:title>
</image:image>
<image:image>
<image:loc>https://ukdataservices.co.uk/assets/images/hero-data-analytics.svg</image:loc>
<image:caption>Data Analytics and Web Scraping Services</image:caption>
<image:title>Enterprise Data Solutions</image:title>
</image:image>
</url>
</urlset>