Rebrand: UK AI Automation — new domain, logo, indigo colour scheme, AI services content

This commit is contained in:
Peter Foster
2026-03-21 09:48:46 +00:00
parent a4a8e237d6
commit 1d705572ad
164 changed files with 2870 additions and 9819 deletions

View File

@@ -16,7 +16,7 @@
* @return string The canonical URL
*/
function getCanonicalUrl($overrideUrl = null) {
$baseUrl = 'https://ukdataservices.co.uk';
$baseUrl = 'https://ukaiautomation.co.uk';
// If override provided, clean and return it
if ($overrideUrl) {
@@ -94,7 +94,7 @@ function generateCanonicalTag($url = null) {
* @return string The full canonical URL
*/
function getPageUrl($pageKey) {
$baseUrl = 'https://ukdataservices.co.uk';
$baseUrl = 'https://ukaiautomation.co.uk';
$urls = [
'home' => '',
@@ -143,7 +143,7 @@ function isCanonicalUrl() {
. "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$canonical = getCanonicalUrl();
return cleanCanonicalUrl('https://ukdataservices.co.uk', $currentUrl) === $canonical;
return cleanCanonicalUrl('https://ukaiautomation.co.uk', $currentUrl) === $canonical;
}
/**