2025-12-09 09:07:07 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Organization Schema Component
|
|
|
|
|
* Generates Organization structured data for improved SEO
|
|
|
|
|
*
|
|
|
|
|
* Usage: Include this file in the <head> of every page
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
* <?php include(['DOCUMENT_ROOT'] . '/includes/schema/organization-schema.php'); ?>
|
2025-12-09 09:07:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$organizationSchema = [
|
|
|
|
|
'@context' => 'https://schema.org',
|
|
|
|
|
'@type' => 'Organization',
|
2026-03-21 09:48:46 +00:00
|
|
|
'@id' => 'https://ukaiautomation.co.uk/#organization',
|
|
|
|
|
'name' => 'UK AI Automation',
|
2026-03-21 12:39:37 +00:00
|
|
|
'legalName' => 'DataNorfolk Limited',
|
2026-03-21 09:48:46 +00:00
|
|
|
'url' => 'https://ukaiautomation.co.uk',
|
2025-12-09 09:07:07 +00:00
|
|
|
'logo' => [
|
|
|
|
|
'@type' => 'ImageObject',
|
2026-03-21 09:48:46 +00:00
|
|
|
'url' => 'https://ukaiautomation.co.uk/assets/images/ukaiautomation-logo.svg',
|
2025-12-09 09:07:07 +00:00
|
|
|
'width' => 300,
|
|
|
|
|
'height' => 100
|
|
|
|
|
],
|
2026-03-21 09:48:46 +00:00
|
|
|
'image' => 'https://ukaiautomation.co.uk/assets/images/ukaiautomation-logo.svg',
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'description' => 'UK-based AI automation consultancy. We help legal and consultancy firms automate document extraction, research, and data workflows.',
|
2026-03-21 09:48:46 +00:00
|
|
|
'email' => 'info@ukaiautomation.co.uk',
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'telephone' => '+441692689150',
|
2025-12-09 09:07:07 +00:00
|
|
|
'address' => [
|
|
|
|
|
'@type' => 'PostalAddress',
|
2026-03-21 12:38:27 +00:00
|
|
|
'streetAddress' => '',
|
|
|
|
|
'addressLocality' => 'North Walsham',
|
|
|
|
|
'addressRegion' => 'Norfolk',
|
|
|
|
|
'postalCode' => 'NR28',
|
2025-12-09 09:07:07 +00:00
|
|
|
'addressCountry' => 'GB'
|
|
|
|
|
],
|
|
|
|
|
'geo' => [
|
|
|
|
|
'@type' => 'GeoCoordinates',
|
2026-03-21 12:38:27 +00:00
|
|
|
'latitude' => 52.8269,
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'longitude' => 1.3816
|
2025-12-09 09:07:07 +00:00
|
|
|
],
|
|
|
|
|
'areaServed' => [
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'Country',
|
|
|
|
|
'name' => 'United Kingdom'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'City',
|
|
|
|
|
'name' => 'London'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'City',
|
|
|
|
|
'name' => 'Manchester'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'City',
|
|
|
|
|
'name' => 'Birmingham'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'City',
|
|
|
|
|
'name' => 'Edinburgh'
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'City',
|
|
|
|
|
'name' => 'Cardiff'
|
|
|
|
|
]
|
|
|
|
|
],
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'sameAs' => [],
|
2025-12-09 09:07:07 +00:00
|
|
|
'contactPoint' => [
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'ContactPoint',
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'telephone' => '+441692689150',
|
|
|
|
|
'contactType' => 'customer service',
|
2025-12-09 09:07:07 +00:00
|
|
|
'availableLanguage' => 'English',
|
|
|
|
|
'areaServed' => 'GB',
|
|
|
|
|
'hoursAvailable' => [
|
|
|
|
|
'@type' => 'OpeningHoursSpecification',
|
|
|
|
|
'dayOfWeek' => ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
|
|
|
|
|
'opens' => '09:00',
|
|
|
|
|
'closes' => '17:30'
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'@type' => 'ContactPoint',
|
2026-03-21 09:48:46 +00:00
|
|
|
'email' => 'info@ukaiautomation.co.uk',
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
'contactType' => 'sales',
|
2025-12-09 09:07:07 +00:00
|
|
|
'availableLanguage' => 'English',
|
|
|
|
|
'areaServed' => 'GB'
|
|
|
|
|
]
|
|
|
|
|
],
|
2026-03-08 09:37:35 +00:00
|
|
|
'foundingDate' => '2013',
|
2025-12-09 09:07:07 +00:00
|
|
|
'numberOfEmployees' => [
|
|
|
|
|
'@type' => 'QuantitativeValue',
|
2026-03-21 09:48:46 +00:00
|
|
|
'value' => '1'
|
2025-12-09 09:07:07 +00:00
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
?>
|
SEO audit fixes: H1 keyword, schema, robots.txt, llms.txt, sitemap, alt texts, logo
- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies)
- Hero subtitle: replace old scraping copy with accurate consultancy copy
- WebPage schema name aligned with title tag
- Organization schema: add telephone, fix sameAs (remove broken social URLs)
- robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot)
- llms.txt: add Key Pages section with 7 linked pages
- sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr)
- Icon alt texts: simplify 6 keyword-stuffed verbose alts
- Nav logo: add width/height dimensions, switch to loading=eager
2026-03-22 03:14:52 +00:00
|
|
|
<script type=application/ld+json>
|
2025-12-09 09:07:07 +00:00
|
|
|
<?php echo json_encode($organizationSchema, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); ?>
|
|
|
|
|
</script>
|