2025-12-07 11:49:39 +00:00
< ? php
/**
* Author Bio Component
2026-03-21 12:51:04 +00:00
* Displays organisation author credit for E - E - A - T purposes .
2025-12-07 11:49:39 +00:00
*/
2026-03-21 12:51:04 +00:00
$author_info = [
'name' => 'UK AI Automation' ,
'role' => 'AI Automation Consultancy' ,
'bio' => 'UK AI Automation builds document extraction pipelines, research automation tools, and custom AI agents for UK law firms and management consultancies.' ,
'linkedin' => 'https://www.linkedin.com/company/ukaiautomation' ,
'expertise' => [ 'AI Automation' , 'Document Extraction' , 'Research Automation' , 'LLMs' , 'GDPR Compliance' ],
'image' => '/assets/images/ukaiautomation-logo.svg'
2025-12-07 11:49:39 +00:00
];
?>
2026-03-21 12:51:04 +00:00
< div class = " author-bio " itemscope itemtype = " https://schema.org/Organization " >
2026-02-22 10:19:25 +00:00
< div class = " bio-avatar " >
2025-12-07 11:49:39 +00:00
< img src = " <?php echo htmlspecialchars( $author_info['image'] ); ?> "
2026-03-21 12:51:04 +00:00
alt = " UK AI Automation "
loading = " lazy " width = " 80 " height = " 80 " itemprop = " logo " >
2025-12-07 11:49:39 +00:00
</ div >
2026-02-22 10:19:25 +00:00
< div class = " bio-info " >
< h4 class = " bio-header " > About the Author </ h4 >
2026-03-21 12:51:04 +00:00
< p class = " bio-name " itemprop = " name " >< ? php echo htmlspecialchars ( $author_info [ 'name' ]); ?> </p>
< p class = " bio-role " itemprop = " description " >< ? php echo htmlspecialchars ( $author_info [ 'role' ]); ?> </p>
< p class = " bio-description " >< ? php echo htmlspecialchars ( $author_info [ 'bio' ]); ?> </p>
2026-02-22 10:19:25 +00:00
< div class = " bio-expertise " >
2025-12-07 11:49:39 +00:00
< span class = " expertise-label " > Expertise :</ span >
< ? php foreach ( $author_info [ 'expertise' ] as $skill ) : ?>
< span class = " expertise-tag " >< ? php echo htmlspecialchars ( $skill ); ?> </span>
< ? php endforeach ; ?>
</ div >
2026-02-22 10:19:25 +00:00
< div class = " bio-social " >
2025-12-07 11:49:39 +00:00
< a href = " <?php echo htmlspecialchars( $author_info['linkedin'] ); ?> "
2026-03-21 12:51:04 +00:00
target = " _blank " rel = " noopener noreferrer " itemprop = " sameAs " class = " linkedin-link " >
2025-12-07 11:49:39 +00:00
Connect on LinkedIn
</ a >
</ div >
</ div >
</ div >