99 lines
6.2 KiB
PHP
99 lines
6.2 KiB
PHP
<?php
|
|
// Enhanced security headers
|
|
// Session for CSRF token
|
|
ini_set('session.cookie_samesite', 'Lax');
|
|
ini_set('session.cookie_httponly', '1');
|
|
ini_set('session.cookie_secure', '1');
|
|
session_start();
|
|
|
|
// Prevent caching - page contains session-specific tokens
|
|
// Aggressive no-cache headers removed to improve SEO performance. Caching is now enabled.
|
|
if (!isset($_SESSION['csrf_token'])) {
|
|
$_SESSION['csrf_token'] = bin2hex(random_bytes(32));
|
|
}
|
|
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
|
header('Content-Security-Policy: default-src \'self\'; script-src \'self\' \'unsafe-inline\' https://cdnjs.cloudflare.com https://www.googletagmanager.com https://www.google-analytics.com https://www.clarity.ms https://www.google.com https://www.gstatic.com; style-src \'self\' \'unsafe-inline\' https://fonts.googleapis.com; font-src \'self\' https://fonts.gstatic.com; img-src \'self\' data: https://www.google-analytics.com; connect-src \'self\' https://www.google-analytics.com https://analytics.google.com https://region1.google-analytics.com https://www.google.com; frame-src https://www.google.com;');
|
|
|
|
// SEO and performance optimizations
|
|
$page_title = "Data Analytics Services London | UK Data Services";
|
|
$page_description = "Expert data analytics services in London. We turn your raw data into actionable insights with BI, reporting, and data science. Contact our London team.";
|
|
$canonical_url = "https://ukdataservices.co.uk/services/data-analytics-london";
|
|
$keywords = "data analytics services london, analytics consultancy london, business intelligence london, data science london, data analysis services uk, london data consultants";
|
|
$author = "UK Data Services";
|
|
$og_image = "https://ukdataservices.co.uk/assets/images/og/data-analytics-london.png";
|
|
$twitter_card_image = "https://ukdataservices.co.uk/assets/images/og/data-analytics-london.png";
|
|
?>
|
|
<!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="<?php echo htmlspecialchars($keywords); ?>">
|
|
<meta name="author" content="<?php echo htmlspecialchars($author); ?>">
|
|
<link rel="canonical" href="<?php echo htmlspecialchars($canonical_url); ?>">
|
|
<meta name="robots" content="index, follow">
|
|
<link rel="stylesheet" href="/assets/css/main.min.css?v=1.1.4">
|
|
</head>
|
|
<body>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
|
|
|
<main class="service-page">
|
|
<section class="hero">
|
|
<h1>Data Analytics Services in London</h1>
|
|
<p>Transform your business with expert data analytics consultancy in London. We help you unlock the value in your data, from custom data collection to advanced business intelligence and predictive modelling.</p>
|
|
<a href="/contact" class="cta-button">Get Your Free Data Consultation</a>
|
|
</section>
|
|
|
|
<section class="content-block">
|
|
<h2>Your Trusted London Analytics Consultancy</h2>
|
|
<p>In today's competitive market, data is your most valuable asset. But without the right analysis, it's just noise. UK Data Services is a London-based analytics firm that specialises in turning complex datasets into clear, actionable insights. Whether you need to understand customer behaviour, optimise your pricing, or monitor competitors, our team of data scientists and analysts is here to help.</p>
|
|
</section>
|
|
|
|
<section class="services-offered">
|
|
<h2>Our Core Analytics Services</h2>
|
|
<div class="service-grid">
|
|
<div class="service-item">
|
|
<h3>Business Intelligence (BI) & Dashboarding</h3>
|
|
<p>We create custom, interactive dashboards (using tools like Power BI, Tableau, and Looker) that provide a real-time view of your most important KPIs. Track performance, spot trends, and empower your team to make data-driven decisions.</p>
|
|
</div>
|
|
<div class="service-item">
|
|
<h3>Predictive Analytics & Data Science</h3>
|
|
<p>Go beyond historical reporting. Our data science services use machine learning models to forecast future trends, predict customer churn, and identify opportunities for growth. We help you anticipate what's next.</p>
|
|
</div>
|
|
<div class="service-item">
|
|
<h3>Custom Data Collection & Web Scraping</h3>
|
|
<p>Great analysis starts with great data. As a leading <a href="/web-scraping-services">web scraping service</a>, we provide the high-quality, structured, and GDPR-compliant data you need to fuel your analytics projects.</p>
|
|
</div>
|
|
<div class="service-item">
|
|
<h3>Market & Competitor Analysis</h3>
|
|
<p>Gain a decisive edge with data-driven insights into your market landscape. We analyse competitor pricing, product catalogues, and customer sentiment to inform your strategic planning and positioning.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="why-us-block">
|
|
<h2>Why Choose UK Data Services in London?</h2>
|
|
<ul>
|
|
<li><strong>London-Based Experts:</strong> Our team is on the ground in London, providing local expertise and support.</li>
|
|
<li><strong>End-to-End Solutions:</strong> From data acquisition to final analysis, we manage the entire data pipeline.</li>
|
|
<li><strong>Commercial Focus:</strong> We deliver insights that are directly tied to your business objectives and ROI.</li>
|
|
<li><strong>Technology Agnostic:</strong> We use the best tools for the job, ensuring a solution that fits your existing tech stack.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section class="final-cta">
|
|
<h2>Ready to Unlock Your Data's Potential?</h2>
|
|
<p>Contact our London analytics team today for a no-obligation discussion about your data challenges and goals. Let's build your competitive advantage together.</p>
|
|
<a href="/contact" class="cta-button">Request a Quote</a>
|
|
</section>
|
|
</main>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
|
|
|
<script src="/assets/js/main.min.js?v=1.1.1"></script>
|
|
|
|
</body>
|
|
</html>
|