125 lines
7.3 KiB
PHP
125 lines
7.3 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 = "UK Data Analytics Services | London & Manchester Experts";
|
|
$page_description = "Transform your raw data into actionable insights. Our UK-based data analytics services help you make smarter business decisions. Serving London, Manchester & beyond.";
|
|
$canonical_url = "https://ukdataservices.co.uk/data-analytics-services.php";
|
|
$keywords = "data analytics services, business intelligence UK, data analytics London, data analytics Manchester, predictive analytics, data visualisation, BI services, data strategy consulting";
|
|
$author = "UK Data Services";
|
|
$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">
|
|
<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); ?>">
|
|
<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); ?>">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($og_image); ?>">
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:url" content="<?php echo htmlspecialchars($canonical_url); ?>">
|
|
<meta name="twitter:title" content="<?php echo htmlspecialchars($page_title); ?>">
|
|
<meta name="twitter:description" content="<?php echo htmlspecialchars($page_description); ?>">
|
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($twitter_card_image); ?>">
|
|
|
|
<!-- Favicon and App Icons -->
|
|
<link rel="icon" type="image/svg+xml" href="/assets/images/favicon.svg">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.svg">
|
|
<link rel="manifest" href="/manifest.json">
|
|
<meta name="theme-color" content="#144784">
|
|
|
|
<link rel="stylesheet" href="/assets/css/main.min.css?v=1.1.4">
|
|
|
|
<!-- Google Analytics 4 (GA4) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GK41JM8DK0"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'G-GK41JM8DK0');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<h1>Data Analytics & Business Intelligence Services</h1>
|
|
<p class="subtitle">Turn your data from a cost centre into a profit centre. We help UK businesses in London, Manchester, and across the country unlock actionable insights from their data.</p>
|
|
<a href="/contact" class="btn btn-primary">Get Your Free Analytics Consultation</a>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>From Raw Data to Strategic Advantage</h2>
|
|
<p>Data is everywhere, but meaningful insights are rare. Our data analytics services bridge that gap. We take your raw data, whether it's from web scraping, your internal CRM, or other sources, and transform it into clear, actionable intelligence that drives growth, efficiency, and profitability.</p>
|
|
<p>Our team of UK-based analysts are experts in statistical analysis, machine learning, and data visualisation. We don't just give you charts; we provide a narrative that explains what the data means for your business and what you should do next.</p>
|
|
</section>
|
|
|
|
<section class="content-section-alt">
|
|
<h2>Our Core Analytics Capabilities</h2>
|
|
<div class="features-grid">
|
|
<div class="feature-item">
|
|
<h3>Business Intelligence (BI) Dashboards</h3>
|
|
<p>We build custom, interactive dashboards (e.g., Power BI, Tableau) that provide a real-time view of your key performance indicators (KPIs).</p>
|
|
</div>
|
|
<div class="feature-item">
|
|
<h3>Predictive Analytics</h3>
|
|
<p>Leverage historical data to forecast future trends, customer behaviour, and market changes. Identify opportunities and mitigate risks before they happen.</p>
|
|
</div>
|
|
<div class="feature-item">
|
|
<h3>Market & Competitor Analysis</h3>
|
|
<p>Combine scraped competitor data with market trends to understand your position, identify gaps, and make strategic moves with confidence.</p>
|
|
</div>
|
|
<div class="feature-item">
|
|
<h3>Customer Segmentation</h3>
|
|
<p>Analyse customer data to identify distinct groups, allowing for more targeted marketing, personalised products, and improved customer lifetime value.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="content-section">
|
|
<h2>Why Choose Our UK Analytics Team?</h2>
|
|
<ul>
|
|
<li><strong>UK-Based Experts:</strong> Work with analysts in your timezone who understand the nuances of the UK market, with a strong presence in London and Manchester.</li>
|
|
<li><strong>Tool Agnostic:</strong> We use the best tool for the job, whether it's Python, R, SQL, Power BI, or a simple, elegant spreadsheet.</li>
|
|
<li><strong>End-to-End Service:</strong> From <a href="/">data collection and scraping</a> to final reporting and strategic recommendations, we manage the entire pipeline.</li>
|
|
<li><strong>Focus on ROI:</strong> Our goal is to provide insights that have a direct, measurable impact on your bottom line.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
|
|
|
<script src="/assets/js/main.min.js?v=1.1.1"></script>
|
|
|
|
</body>
|
|
</html>
|