Files
ukaiautomation/blog/index.php
Peter Foster 37a6b01598 Replace web scraping content with AI automation brand
- Remove all web scraping services, blog articles, locations, tools pages
- Remove fake author profiles and old categories
- Add 6 new AI automation blog articles targeting legal/consultancy firms
- Rewrite blog index with new AI automation content
- Update robots.txt with correct ukaiautomation.co.uk domain
- Update sitemap.xml with current pages only
2026-03-21 10:04:47 +00:00

86 lines
4.4 KiB
PHP

<?php
$page_title = "AI Automation Blog | Practical Guides for Legal and Consultancy Firms | 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.";
$canonical_url = "https://ukaiautomation.co.uk/blog/";
include($_SERVER['DOCUMENT_ROOT'] . '/includes/meta-tags.php');
include($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php');
$articles = [
[
'slug' => 'due-diligence-automation-law-firms',
'title' => 'How Law Firms Can Automate Due Diligence Document Review',
'category' => 'Legal Tech',
'date' => '2026-03-21',
'read_time' => '7 min read',
'excerpt' => 'Due diligence is one of the most document-heavy tasks in legal practice. AI extraction systems can now handle the bulk of this work — here is how it works in practice.',
],
[
'slug' => 'research-automation-management-consultancy',
'title' => 'Research Automation for Management Consultancies',
'category' => 'Consultancy Tech',
'date' => '2026-03-21',
'read_time' => '7 min read',
'excerpt' => 'Junior analysts at consultancy firms spend a disproportionate amount of time on desk research that could be largely automated. Here is what that looks like in practice.',
],
[
'slug' => 'what-is-an-ai-agent-professional-services',
'title' => 'What Is an AI Agent? A Plain-English Guide for Legal and Consultancy Firms',
'category' => 'AI Automation',
'date' => '2026-03-21',
'read_time' => '6 min read',
'excerpt' => 'The term AI agent gets used a lot, but what does it actually mean for a law firm or consultancy? A clear, jargon-free explanation with practical examples.',
],
[
'slug' => 'document-extraction-pdf-to-database',
'title' => 'Document Extraction: From Unstructured PDF to Structured Database',
'category' => 'AI Automation',
'date' => '2026-03-21',
'read_time' => '8 min read',
'excerpt' => 'Modern AI extraction pipelines can turn stacks of PDFs and Word documents into clean, queryable data. Here is how the technology actually works, in plain terms.',
],
[
'slug' => 'cost-of-manual-data-work-professional-services',
'title' => 'The Real Cost of Manual Data Work in Legal and Consultancy Firms',
'category' => 'Business Case',
'date' => '2026-03-21',
'read_time' => '7 min read',
'excerpt' => 'Manual data work costs professional services firms far more than they typically account for. Here is how to calculate the true figure — and the ROI case for automation.',
],
[
'slug' => 'gdpr-ai-automation-uk-firms',
'title' => 'GDPR and AI Automation: What UK Professional Services Firms Need to Know',
'category' => 'Compliance',
'date' => '2026-03-21',
'read_time' => '8 min read',
'excerpt' => 'GDPR compliance is a legitimate concern when deploying AI automation in UK legal and consultancy firms. Here is a clear-eyed look at the real issues and how to address them.',
],
];
?>
<main>
<section class="page-hero">
<div class="container">
<h1>AI Automation Blog</h1>
<p class="hero-subtitle">Practical guides on AI automation for UK law firms and management consultancies</p>
</div>
</section>
<section class="blog-listing">
<div class="container">
<div class="articles-grid">
<?php foreach ($articles as $a): ?>
<article class="article-card">
<div class="article-card-meta">
<span class="category"><?php echo htmlspecialchars($a['category']); ?></span>
<span class="read-time"><?php echo htmlspecialchars($a['read_time']); ?></span>
</div>
<h2><a href="/blog/articles/<?php echo htmlspecialchars($a['slug']); ?>"><?php echo htmlspecialchars($a['title']); ?></a></h2>
<p><?php echo htmlspecialchars($a['excerpt']); ?></p>
<a href="/blog/articles/<?php echo htmlspecialchars($a['slug']); ?>" class="read-more">Read article &rarr;</a>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
</main>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>