Aimpress_site/index.html
Vadym Samoilenko 6c1956585a Add SEO, structured data, AI indexing, and Google Reviews integration
- Add react-helmet-async with SEO component for dynamic meta tags on all pages
- Add JSON-LD structured data (Organization, WebSite, ProfessionalService) to index.html
- Add fallback OG/Twitter Card meta tags in index.html for non-JS crawlers
- Add robots.txt allowing all crawlers including AI bots (GPTBot, Claude-Web, etc.)
- Add sitemap.xml with all routes
- Add llms.txt for AI crawler discovery
- Add X-Robots-Tag header and reviews.json cache rule to nginx.conf
- Replace fake testimonials with Google Reviews (fetch /reviews.json)
- Add star ratings, Google badge, and "Leave us a review" button to testimonials
- Add server/sync-reviews.mjs for daily Google Places API review sync

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 14:26:05 +00:00

144 lines
5.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo/favicon-32x32.png" />
<link rel="apple-touch-icon" href="/logo/webclip-256x256.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AImpress | AI & Automation Consulting for SMEs | London, UK</title>
<meta name="description" content="AImpress helps small and medium businesses in the UK automate operations, cut costs, and grow faster with AI-powered solutions. Based in London." />
<meta name="keywords" content="AI consulting, automation, SME, small business, London, UK, chatbot, workflow automation, Make.com, marketing automation" />
<meta name="author" content="AImpress Ltd" />
<meta name="theme-color" content="#075056" />
<link rel="canonical" href="https://ai-impress.com/" />
<!-- Open Graph -->
<meta property="og:title" content="AImpress | AI & Automation Consulting for SMEs | London, UK" />
<meta property="og:description" content="AImpress helps small and medium businesses in the UK automate operations, cut costs, and grow faster with AI-powered solutions." />
<meta property="og:image" content="https://ai-impress.com/logo/webclip-256x256.png" />
<meta property="og:url" content="https://ai-impress.com/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="AImpress" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="AImpress | AI & Automation Consulting for SMEs | London, UK" />
<meta name="twitter:description" content="AImpress helps small and medium businesses in the UK automate operations, cut costs, and grow faster with AI-powered solutions." />
<meta name="twitter:image" content="https://ai-impress.com/logo/webclip-256x256.png" />
<!-- Structured Data: Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "AImpress Ltd",
"url": "https://ai-impress.com",
"logo": "https://ai-impress.com/logo/webclip-256x256.png",
"foundingDate": "2024",
"contactPoint": {
"@type": "ContactPoint",
"email": "hello@ai-impress.com",
"contactType": "customer service"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "Suite 6065 Unit 3a, 34-35 Hatton Garden",
"addressLocality": "London",
"postalCode": "EC1N 8DX",
"addressCountry": "GB"
},
"sameAs": [
"https://www.linkedin.com/company/aimpress-ltd/",
"https://www.facebook.com/aiimpress/",
"https://www.instagram.com/aimpress_ltd/",
"https://www.youtube.com/@AImpress_Ltd",
"https://www.tiktok.com/@aiimpress_ltd"
]
}
</script>
<!-- Structured Data: WebSite -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://ai-impress.com",
"name": "AImpress",
"description": "AI and automation consulting for small and medium businesses in the UK."
}
</script>
<!-- Structured Data: ProfessionalService -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfessionalService",
"name": "AImpress Ltd",
"url": "https://ai-impress.com",
"logo": "https://ai-impress.com/logo/webclip-256x256.png",
"image": "https://ai-impress.com/logo/webclip-256x256.png",
"description": "AI and automation consulting helping SMEs automate operations, reduce costs, and grow faster.",
"address": {
"@type": "PostalAddress",
"streetAddress": "Suite 6065 Unit 3a, 34-35 Hatton Garden",
"addressLocality": "London",
"postalCode": "EC1N 8DX",
"addressCountry": "GB"
},
"telephone": "",
"email": "hello@ai-impress.com",
"priceRange": "$$",
"areaServed": {
"@type": "Country",
"name": "United Kingdom"
},
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "AI & Automation Services",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "AI Chatbots & Virtual Assistants"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Business Process Automation"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Content Automation"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Marketing Automation"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "AI Strategy Consulting"
}
}
]
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>