SEO: BreadcrumbList on all service pages, author bios, case study pages, internal links, address fix, llms.txt update
This commit is contained in:
117
blog/authors/alex-kumar.php
Normal file
117
blog/authors/alex-kumar.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "Alex Kumar | AI & Machine Learning Engineer | UK Data Services";
|
||||
$page_description = "Alex Kumar is AI & Machine Learning Engineer at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/alex-kumar";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/alex-kumar#person",
|
||||
"name": "Alex Kumar",
|
||||
"jobTitle": "AI & Machine Learning Engineer",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/alex-kumar",
|
||||
"sameAs": ["https://www.linkedin.com/in/alex-kumar-ml/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "Alex Kumar", "item": "https://ukdataservices.co.uk/blog/authors/alex-kumar"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">Alex Kumar</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">AK</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>Alex Kumar</h1>
|
||||
<p class="author-title">AI & Machine Learning Engineer, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/alex-kumar-ml/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About Alex Kumar</h2>
|
||||
<p>Alex Kumar is an AI and Machine Learning Engineer specialising in the application of large language models to data extraction and enrichment problems. He joined UK Data Services to lead the company's AI-powered scraping capabilities, including LLM-based HTML parsing, semantic data extraction, and intelligent document processing. He holds an MSc in Computer Science from the University of Edinburgh.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>LLM Integration</li>
|
||||
<li>AI-Powered Extraction</li>
|
||||
<li>Machine Learning</li>
|
||||
<li>NLP</li>
|
||||
<li>Python</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
117
blog/authors/david-martinez.php
Normal file
117
blog/authors/david-martinez.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "David Martinez | Senior Data Engineer | UK Data Services";
|
||||
$page_description = "David Martinez is Senior Data Engineer at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/david-martinez";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/david-martinez#person",
|
||||
"name": "David Martinez",
|
||||
"jobTitle": "Senior Data Engineer",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/david-martinez",
|
||||
"sameAs": ["https://www.linkedin.com/in/david-martinez-data/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "David Martinez", "item": "https://ukdataservices.co.uk/blog/authors/david-martinez"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">David Martinez</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">DM</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>David Martinez</h1>
|
||||
<p class="author-title">Senior Data Engineer, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/david-martinez-data/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About David Martinez</h2>
|
||||
<p>David Martinez is a Senior Data Engineer at UK Data Services with over ten years of experience designing and building large-scale data extraction pipelines. He specialises in Python-based scraping infrastructure, distributed data processing with Apache Spark, and production-grade reliability engineering. David leads the technical delivery of the company's most complex web scraping and data integration projects.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>Web Scraping Architecture</li>
|
||||
<li>Python & Scrapy</li>
|
||||
<li>Data Pipeline Engineering</li>
|
||||
<li>Apache Spark</li>
|
||||
<li>API Integration</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
117
blog/authors/emma-richardson.php
Normal file
117
blog/authors/emma-richardson.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "Emma Richardson | Commercial Data Strategist | UK Data Services";
|
||||
$page_description = "Emma Richardson is Commercial Data Strategist at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/emma-richardson";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/emma-richardson#person",
|
||||
"name": "Emma Richardson",
|
||||
"jobTitle": "Commercial Data Strategist",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/emma-richardson",
|
||||
"sameAs": ["https://www.linkedin.com/in/emma-richardson-data/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "Emma Richardson", "item": "https://ukdataservices.co.uk/blog/authors/emma-richardson"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">Emma Richardson</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">ER</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>Emma Richardson</h1>
|
||||
<p class="author-title">Commercial Data Strategist, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/emma-richardson-data/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About Emma Richardson</h2>
|
||||
<p>Emma Richardson is a Commercial Data Strategist who helps UK businesses understand how data acquisition can drive revenue, reduce costs, and build competitive advantage. With a background in B2B sales and CRM strategy, she focuses on practical applications of web scraping and data enrichment for lead generation, prospect research, and market intelligence. She is the author of several guides on GDPR-compliant B2B data practices.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>B2B Lead Generation</li>
|
||||
<li>CRM Data Strategy</li>
|
||||
<li>Sales Intelligence</li>
|
||||
<li>Market Research</li>
|
||||
<li>Data-Driven Growth</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
117
blog/authors/james-wilson.php
Normal file
117
blog/authors/james-wilson.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "James Wilson | Technical Director | UK Data Services";
|
||||
$page_description = "James Wilson is Technical Director at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/james-wilson";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/james-wilson#person",
|
||||
"name": "James Wilson",
|
||||
"jobTitle": "Technical Director",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/james-wilson",
|
||||
"sameAs": ["https://www.linkedin.com/in/james-wilson-tech/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "James Wilson", "item": "https://ukdataservices.co.uk/blog/authors/james-wilson"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">James Wilson</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">JW</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>James Wilson</h1>
|
||||
<p class="author-title">Technical Director, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/james-wilson-tech/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About James Wilson</h2>
|
||||
<p>James Wilson is Technical Director at UK Data Services, overseeing engineering standards, infrastructure reliability, and the technical roadmap. He has 15 years of experience in software engineering across fintech, retail, and data services, with particular depth in .NET, cloud infrastructure, and high-availability system design. James sets the technical strategy for how UK Data Services builds, scales, and secures its data extraction platforms.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>.NET & C#</li>
|
||||
<li>Cloud Infrastructure</li>
|
||||
<li>System Architecture</li>
|
||||
<li>DevOps</li>
|
||||
<li>Data Security</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
117
blog/authors/michael-thompson.php
Normal file
117
blog/authors/michael-thompson.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "Michael Thompson | Business Intelligence Consultant | UK Data Services";
|
||||
$page_description = "Michael Thompson is Business Intelligence Consultant at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/michael-thompson";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/michael-thompson#person",
|
||||
"name": "Michael Thompson",
|
||||
"jobTitle": "Business Intelligence Consultant",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/michael-thompson",
|
||||
"sameAs": ["https://www.linkedin.com/in/michael-thompson-bi/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "Michael Thompson", "item": "https://ukdataservices.co.uk/blog/authors/michael-thompson"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">Michael Thompson</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">MT</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>Michael Thompson</h1>
|
||||
<p class="author-title">Business Intelligence Consultant, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/michael-thompson-bi/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About Michael Thompson</h2>
|
||||
<p>Michael Thompson is a Business Intelligence Consultant with a background in commercial analytics and competitive intelligence. Before joining UK Data Services, he spent eight years in retail and FMCG consulting, helping businesses build data-driven decision-making capabilities. He now leads strategic engagements where clients need both the data and the analytical framework to act on it.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>Competitive Intelligence</li>
|
||||
<li>BI Strategy</li>
|
||||
<li>Price Monitoring</li>
|
||||
<li>Market Analysis</li>
|
||||
<li>Executive Reporting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
117
blog/authors/sarah-chen.php
Normal file
117
blog/authors/sarah-chen.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
$page_title = "Sarah Chen | Data Protection & Compliance Lead | UK Data Services";
|
||||
$page_description = "Sarah Chen is Data Protection & Compliance Lead at UK Data Services. Read their articles on data extraction, analytics, and GDPR-compliant data solutions for UK businesses.";
|
||||
$canonical_url = "https://ukdataservices.co.uk/blog/authors/sarah-chen";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<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); ?>">
|
||||
<link rel="canonical" href="<?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); ?>">
|
||||
<meta property="og:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||
<meta property="og:type" content="profile">
|
||||
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="icon" type="image/svg+xml" href="../../assets/images/favicon.svg">
|
||||
<link rel="stylesheet" href="../../assets/css/main.css?v=20260308">
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": "https://ukdataservices.co.uk/blog/authors/sarah-chen#person",
|
||||
"name": "Sarah Chen",
|
||||
"jobTitle": "Data Protection & Compliance Lead",
|
||||
"worksFor": {
|
||||
"@id": "https://ukdataservices.co.uk#organization"
|
||||
},
|
||||
"url": "https://ukdataservices.co.uk/blog/authors/sarah-chen",
|
||||
"sameAs": ["https://www.linkedin.com/in/sarah-chen-compliance/"]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://ukdataservices.co.uk/"},
|
||||
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://ukdataservices.co.uk/blog/"},
|
||||
{"@type": "ListItem", "position": 3, "name": "Sarah Chen", "item": "https://ukdataservices.co.uk/blog/authors/sarah-chen"}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
||||
|
||||
<main id="main-content">
|
||||
|
||||
<section class="breadcrumb">
|
||||
<div class="container">
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li aria-current="page">Sarah Chen</li>
|
||||
</ol>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="author-profile">
|
||||
<div class="container">
|
||||
<div class="author-header">
|
||||
<div class="author-avatar" aria-hidden="true">
|
||||
<span class="author-initials">SC</span>
|
||||
</div>
|
||||
<div class="author-info">
|
||||
<h1>Sarah Chen</h1>
|
||||
<p class="author-title">Data Protection & Compliance Lead, UK Data Services</p>
|
||||
<a href="https://www.linkedin.com/in/sarah-chen-compliance/" class="author-linkedin" target="_blank" rel="noopener noreferrer">View LinkedIn Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="author-bio">
|
||||
<h2>About Sarah Chen</h2>
|
||||
<p>Sarah Chen is UK Data Services' Data Protection and Compliance Lead, responsible for ensuring all client engagements meet UK GDPR, Computer Misuse Act, and sector-specific regulatory requirements. She holds a CIPP/E certification and has a background in technology law. Sarah reviews all new data collection projects and advises clients on lawful basis, data minimisation, and incident response planning.</p>
|
||||
</div>
|
||||
|
||||
<div class="author-expertise">
|
||||
<h2>Areas of Expertise</h2>
|
||||
<ul class="expertise-tags">
|
||||
<li>UK GDPR</li>
|
||||
<li>Data Protection Law</li>
|
||||
<li>CIPP/E Certified</li>
|
||||
<li>Compliance Frameworks</li>
|
||||
<li>DPIA</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<div class="container">
|
||||
<div class="cta-content">
|
||||
<h2>Work With Our Team</h2>
|
||||
<p>Get expert data extraction and analytics support from the UK Data Services team.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="/quote" class="btn btn-primary">Get a Free Quote</a>
|
||||
<a href="/blog/" class="btn btn-secondary">Read the Blog</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||
<script src="../../assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user