Compare commits
6 Commits
cd2d91ac59
...
1642219609
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1642219609 | ||
|
|
6819689ebd | ||
|
|
76abfc23da | ||
|
|
683b701655 | ||
|
|
5d490ac91e | ||
|
|
6cff10baba |
@@ -2,8 +2,8 @@
|
|||||||
// Enhanced security headers
|
// Enhanced security headers
|
||||||
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
||||||
|
|
||||||
$page_title = "About Us | AI Automation for Legal & Consulting Firms";
|
$page_title = "Bespoke AI Automation Consultants | UK Legal & Consulting";
|
||||||
$page_description = "Bespoke AI automation consultancy helping UK legal & consulting firms automate data, documents & research workflows. 10+ years experience. Free consultation.";
|
$page_description = "Meet the UK AI automation experts helping legal & consulting firms save hours on data, documents & research. 10+ years experience. Book a free consultation.";
|
||||||
$canonical_url = "https://ukaiautomation.co.uk/about";
|
$canonical_url = "https://ukaiautomation.co.uk/about";
|
||||||
|
|
||||||
// Breadcrumb navigation
|
// Breadcrumb navigation
|
||||||
@@ -154,7 +154,6 @@ $breadcrumbs = [
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Skip to content link for accessibility -->
|
<!-- Skip to content link for accessibility -->
|
||||||
<a href="#main-content" class="skip-to-content">Skip to main content</a>
|
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
|
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
|
||||||
|
|||||||
@@ -1,9 +1,30 @@
|
|||||||
<?php
|
<?php
|
||||||
$page_title = "AI Automation Blog | Practical Guides for Legal and Consultancy Firms | UK AI Automation";
|
$page_title = "AI Automation Blog | UK AI Automation";
|
||||||
$page_description = "Practical articles on AI automation for UK law firms and management consultancies — document extraction, research automation, AI agents, GDPR compliance, and ROI analysis.";
|
$page_description = "Practical articles on AI automation for UK law firms and management consultancies.";
|
||||||
$canonical_url = "https://ukaiautomation.co.uk/blog/";
|
$canonical_url = "https://ukaiautomation.co.uk/blog/";
|
||||||
include($_SERVER['DOCUMENT_ROOT'] . '/includes/meta-tags.php');
|
?>
|
||||||
include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.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="robots" content="index, follow">
|
||||||
|
<link rel="canonical" href="<?php echo htmlspecialchars($canonical_url); ?>">
|
||||||
|
<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:site_name" content="UK AI Automation">
|
||||||
|
<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:wght@300;400;500;600;700&family=Lato:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="/assets/css/main.css?v=20260322">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php');
|
||||||
|
|
||||||
$articles = [
|
$articles = [
|
||||||
[
|
[
|
||||||
@@ -115,3 +136,5 @@ $articles = [
|
|||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
2
faq.php
2
faq.php
@@ -3,7 +3,7 @@
|
|||||||
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
||||||
|
|
||||||
$page_title = "AI Automation FAQ | Legal & Consultancy Firms UK";
|
$page_title = "AI Automation FAQ | Legal & Consultancy Firms UK";
|
||||||
$page_description = "Discover how AI automation helps UK legal & consultancy firms. Answers on workflows, document processing, research automation & ROI. Book a free consultation.";
|
$page_description = "Everything you need to know about AI automation for UK legal & consultancy firms. Workflows, document processing, research automation & ROI. Free consultation.";
|
||||||
$canonical_url = "https://ukaiautomation.co.uk/faq";
|
$canonical_url = "https://ukaiautomation.co.uk/faq";
|
||||||
|
|
||||||
// Breadcrumb navigation
|
// Breadcrumb navigation
|
||||||
|
|||||||
15
index.php
15
index.php
@@ -13,11 +13,11 @@ if (!isset($_SESSION['csrf_token'])) {
|
|||||||
$_SESSION['csrf_token'] = bin2hex(random_bytes(32));
|
$_SESSION['csrf_token'] = bin2hex(random_bytes(32));
|
||||||
}
|
}
|
||||||
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
||||||
header("Content-Security-Policy: default-src 'self'; script-src 'self' 'nonce-{$nonce}' 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' 'nonce-{$nonce}' 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;");
|
header("Content-Security-Policy: default-src 'self'; script-src 'self' 'nonce-{$nonce}' 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
|
// SEO and performance optimizations
|
||||||
$page_title = "AI Automation for Legal Firms UK | Cut Research Time 80%";
|
$page_title = "UK AI Automation Consulting | Legal & Consultancy Firms";
|
||||||
$page_description = "Bespoke AI workflows for UK legal & consultancy firms. Automate document processing, research & data work. Cut manual hours by 80%. Free consultation.";
|
$page_description = "Specialised AI automation for UK legal & consultancy firms. Bespoke workflows for document processing & research. Cut manual work by 80%. Book a free call.";
|
||||||
$canonical_url = "https://ukaiautomation.co.uk/";
|
$canonical_url = "https://ukaiautomation.co.uk/";
|
||||||
$keywords = "AI automation consulting UK, AI automation, document data extraction, legal AI automation, research automation, data pipeline consulting, AI agents UK";
|
$keywords = "AI automation consulting UK, AI automation, document data extraction, legal AI automation, research automation, data pipeline consulting, AI agents UK";
|
||||||
$author = "UK AI Automation";
|
$author = "UK AI Automation";
|
||||||
@@ -133,6 +133,7 @@ $twitter_card_image = "https://ukaiautomation.co.uk/assets/images/ukaiautomation
|
|||||||
.hero-container{position:relative;z-index:2;width:100%}
|
.hero-container{position:relative;z-index:2;width:100%}
|
||||||
.hero-content{text-align:center;max-width:800px;margin:0 auto}
|
.hero-content{text-align:center;max-width:800px;margin:0 auto}
|
||||||
.hero-title{font-size:3.5rem;font-weight:700;margin-bottom:24px;line-height:1.2}
|
.hero-title{font-size:3.5rem;font-weight:700;margin-bottom:24px;line-height:1.2}
|
||||||
|
.hero-eyebrow{font-size:0.85rem;font-weight:600;text-transform:uppercase;letter-spacing:0.12em;opacity:0.75;margin-bottom:16px}
|
||||||
.hero-subtitle{font-size:1.3rem;margin-bottom:40px;opacity:0.95;line-height:1.5}
|
.hero-subtitle{font-size:1.3rem;margin-bottom:40px;opacity:0.95;line-height:1.5}
|
||||||
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 28px;border:none;border-radius:8px;text-decoration:none;font-weight:500;font-size:16px;cursor:pointer;transition:all 0.3s ease;box-shadow:0 2px 8px rgba(0,0,0,0.1);min-height:48px}
|
.btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 28px;border:none;border-radius:8px;text-decoration:none;font-weight:500;font-size:16px;cursor:pointer;transition:all 0.3s ease;box-shadow:0 2px 8px rgba(0,0,0,0.1);min-height:48px}
|
||||||
.btn-primary{background:#4f46e5;color:white!important}
|
.btn-primary{background:#4f46e5;color:white!important}
|
||||||
@@ -141,8 +142,9 @@ $twitter_card_image = "https://ukaiautomation.co.uk/assets/images/ukaiautomation
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- Styles -->
|
<!-- Styles -->
|
||||||
<link rel="stylesheet" href="/assets/css/main.min.css?v=1.1.4" media="print" onload="this.media='all'">
|
<link rel="stylesheet" id="main-css" href="/assets/css/main.min.css?v=1.1.4" media="print">
|
||||||
<noscript><link rel="stylesheet" href="assets/css/main.min.css?v=1.1.4"></noscript>
|
<noscript><link rel="stylesheet" href="/assets/css/main.min.css?v=1.1.4"></noscript>
|
||||||
|
<script nonce="<?php echo $nonce; ?>">(function(){var l=document.getElementById('main-css');if(l.sheet){l.media='all';}else{l.addEventListener('load',function(){this.media='all';});}})();</script>
|
||||||
|
|
||||||
<!-- Enhanced Local SEO Schema -->
|
<!-- Enhanced Local SEO Schema -->
|
||||||
<script type="application/ld+json" nonce="<?php echo $nonce; ?>">
|
<script type="application/ld+json" nonce="<?php echo $nonce; ?>">
|
||||||
@@ -403,7 +405,6 @@ $twitter_card_image = "https://ukaiautomation.co.uk/assets/images/ukaiautomation
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Skip to content link for accessibility -->
|
<!-- Skip to content link for accessibility -->
|
||||||
<a href="#main-content" class="skip-to-content">Skip to main content</a>
|
|
||||||
|
|
||||||
<!-- Google Tag Manager (noscript) -->
|
<!-- Google Tag Manager (noscript) -->
|
||||||
<!-- TODO: Replace GTM-XXXXXXX with your Google Tag Manager container ID -->
|
<!-- TODO: Replace GTM-XXXXXXX with your Google Tag Manager container ID -->
|
||||||
@@ -550,7 +551,7 @@ $twitter_card_image = "https://ukaiautomation.co.uk/assets/images/ukaiautomation
|
|||||||
<section id="services" class="services">
|
<section id="services" class="services">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="section-header">
|
<div class="section-header">
|
||||||
<p class=section-label>Our Services</p>
|
<p class="section-label">Our Services</p>
|
||||||
<p>We automate the manual data and research work that costs UK legal and consultancy firms hours every week. Delivered as working, fully-tested systems.</p>
|
<p>We automate the manual data and research work that costs UK legal and consultancy firms hours every week. Delivered as working, fully-tested systems.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="services-grid">
|
<div class="services-grid">
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ session_start();
|
|||||||
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
header('Strict-Transport-Security: max-age=31536000; includeSubDomains');
|
||||||
|
|
||||||
$page_title = "Free AI Automation Quote | Legal & Consultancy Firms UK";
|
$page_title = "Free AI Automation Quote | Legal & Consultancy Firms UK";
|
||||||
$page_description = "Book a free AI automation assessment for your law firm or consultancy. We identify document processing and research workflows AI can automate. No commitment.";
|
$page_description = "Get a free AI automation quote for your law firm or consultancy. We scope document processing & research workflows. No commitment required.";
|
||||||
$canonical_url = "https://ukaiautomation.co.uk/quote";
|
$canonical_url = "https://ukaiautomation.co.uk/quote";
|
||||||
|
|
||||||
// Breadcrumb navigation
|
// Breadcrumb navigation
|
||||||
@@ -194,7 +194,8 @@ $breadcrumbs = [
|
|||||||
<style>
|
<style>
|
||||||
.quote-hero {
|
.quote-hero {
|
||||||
padding: 100px 0 30px; /* padding-top overridden by main.css */
|
padding: 100px 0 30px; /* padding-top overridden by main.css */
|
||||||
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
background: linear-gradient(135deg, #1e1b4b 0%, #7c3aed 100%);
|
||||||
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -459,7 +460,6 @@ $breadcrumbs = [
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Skip to content link for accessibility -->
|
<!-- Skip to content link for accessibility -->
|
||||||
<a href="#main-content" class="skip-to-content">Skip to main content</a>
|
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
|
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user