Files
ukaiautomation/data-analytics-services.php

118 lines
6.7 KiB
PHP
Raw Normal View History

<?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 UK | Business Intelligence & Reporting";
$page_description = "Turn raw data into actionable insights. Our UK data analytics services offer custom dashboards, business intelligence, and reporting to drive your strategy. Contact us.";
$canonical_url = "https://ukdataservices.co.uk/data-analytics-services.php";
$keywords = "data analytics services UK, business intelligence UK, data reporting services, custom dashboards, data visualisation, data analytics London, BI services";
$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>UK Data Analytics & Business Intelligence Services</h1>
<p>Transform your raw data into a strategic asset. We help UK businesses make smarter decisions with custom analytics, insightful reporting, and powerful business intelligence solutions.</p>
<a href="/contact" class="cta-button">Get Your Free Analysis</a>
</section>
<section class="content-section">
<h2>Unlock Insights from Your Data</h2>
<p>In today's market, data is more than just numbers; it's the key to understanding your customers, optimising operations, and outmanoeuvring the competition. Our UK-based team of analysts specialises in turning complex datasets, whether from <a href="/">web scraping</a> or internal sources, into clear, actionable intelligence.</p>
<h3>Our Data Analytics Services</h3>
<div class="service-grid">
<div class="service-card">
<h4>Custom Dashboard Development</h4>
<p>We build intuitive, interactive dashboards (e.g., Power BI, Tableau, Google Data Studio) that provide a real-time view of your most important KPIs. Stop wading through spreadsheets and start seeing your business clearly.</p>
</div>
<div class="service-card">
<h4>Business Intelligence (BI) Solutions</h4>
<p>We go beyond simple reports to provide comprehensive BI solutions. We help you identify trends, forecast future performance, and uncover hidden opportunities for growth and efficiency.</p>
</div>
<div class="service-card">
<h4>Data Visualisation & Reporting</h4>
<p>Our experts create compelling data visualisations and automated reports that communicate complex information effectively to stakeholders at all levels of your organisation.</p>
</div>
<div class="service-card">
<h4>Market & Competitor Analysis</h4>
<p>Leverage data to understand your position in the market. We analyse pricing trends, customer sentiment, and competitor strategies to give you a decisive edge.</p>
</div>
</div>
</section>
<section class="cta-banner">
<h2>Ready to Make Data-Driven Decisions?</h2>
<p>Let's discuss how our data analytics services can help you achieve your business goals.</p>
<a href="/contact" class="cta-button-secondary">Schedule a Consultation</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>