feat(phase-2): SEO structured data, dynamic meta, service detail pages

- index.html: JSON-LD Organization + Services ItemList schema, Plausible
  Analytics, canonical link
- app.jsx: dynamic document.title + meta description/OG per hash route;
  service detail routing (services/:id → ServiceDetailPage)
- pages.jsx: ServiceDetailPage with hero, metric, use cases (3 per
  service), process timeline, highlights, and CTA; registered on window

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
khondokartowsif171
2026-05-26 02:47:52 +06:00
parent a2042041eb
commit 151e91fb99
4 changed files with 437 additions and 7 deletions
+115
View File
@@ -15,9 +15,124 @@
<meta name="twitter:title" content="Aura Agentic AI" />
<meta name="twitter:description" content="AI agents, automation & full-stack development — Dhaka, Bangladesh." />
<meta name="twitter:image" content="https://auraajenticai.cloud/logo.png" />
<link rel="canonical" href="https://auraajenticai.cloud" />
<link rel="icon" type="image/png" href="logo.png" />
<link rel="apple-touch-icon" href="logo.png" />
<!-- Plausible Analytics -->
<script defer data-domain="auraajenticai.cloud" src="https://plausible.io/js/script.js"></script>
<!-- JSON-LD: Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Aura Agentic AI",
"url": "https://auraajenticai.cloud",
"logo": "https://auraajenticai.cloud/logo.png",
"image": "https://auraajenticai.cloud/logo.png",
"description": "Aura Agentic AI builds custom AI agents, automation pipelines, Web3 infrastructure, MT5 trading systems, data pipelines, and enterprise web apps — based in Dhaka, serving clients worldwide.",
"email": "hello@auraajenticai.cloud",
"foundingDate": "2017",
"areaServed": "Worldwide",
"address": {
"@type": "PostalAddress",
"addressLocality": "Dhaka",
"addressCountry": "BD"
},
"knowsAbout": ["AI agents", "automation", "Web3", "MT5 Expert Advisors", "SvelteKit", "Anthropic Claude", "n8n", "full-stack development"]
}
</script>
<!-- JSON-LD: Services -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Aura Agentic AI Services",
"url": "https://auraajenticai.cloud/#/services",
"itemListElement": [
{
"@type": "ListItem", "position": 1,
"item": {
"@type": "Service",
"name": "Website & Webapp Development",
"description": "From landing pages to full SaaS dashboards — pixel-perfect, fast, and built to scale. SvelteKit, Next.js, React, Tailwind.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "Web Development", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/web-app-dev"
}
},
{
"@type": "ListItem", "position": 2,
"item": {
"@type": "Service",
"name": "AI Agent & Automation",
"description": "Custom AI agents that triage, decide, and execute — integrated with your tools via n8n, Anthropic, and OpenAI.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "AI Development", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/ai-agent-automation"
}
},
{
"@type": "ListItem", "position": 3,
"item": {
"@type": "Service",
"name": "Web3 & Blockchain",
"description": "Wallets, smart contracts, multi-chain bridges, and on-chain audit trails. Gasless UX that hides complexity from end users.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "Blockchain Development", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/web3-blockchain"
}
},
{
"@type": "ListItem", "position": 4,
"item": {
"@type": "Service",
"name": "MT5 EA & Trading Automation",
"description": "Expert Advisors, real-time P&L dashboards, risk envelopes, and one-click kill switches for MetaTrader 5 platforms.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "Trading Automation", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/mt5-ea-trading"
}
},
{
"@type": "ListItem", "position": 5,
"item": {
"@type": "Service",
"name": "Browser Scraping & Data Pipeline",
"description": "Playwright/Puppeteer scrapers, proxy rotation, structured data extraction, and ETL pipelines into your DB or warehouse.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "Data Engineering", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/scraping-data-pipeline"
}
},
{
"@type": "ListItem", "position": 6,
"item": {
"@type": "Service",
"name": "Infrastructure & DevOps",
"description": "VPS setup, Docker, Coolify, Traefik, CI/CD pipelines, SSL, monitoring, and zero-downtime deploys on your own cloud.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "DevOps", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/infra-devops"
}
},
{
"@type": "ListItem", "position": 7,
"item": {
"@type": "Service",
"name": "AI-Powered Meta Ads",
"description": "AI agents connected directly to Meta's official API — optimizing bids, rotating creatives, and reallocating budgets every 15 minutes.",
"provider": { "@type": "Organization", "name": "Aura Agentic AI" },
"serviceType": "Digital Advertising", "areaServed": "Worldwide",
"url": "https://auraajenticai.cloud/#/services/meta-ads-ai"
}
}
]
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&family=Instrument+Serif&display=swap" rel="stylesheet" />