🎯 Objective
Add essential meta tags for SEO, social sharing, and browser tab identification to the root HTML file. Currently the page only has <title>AI Net</title> with no other metadata.
📁 Files to Modify
| Action |
File Path |
Description |
| Modify |
frontend/index.html |
Add meta description, OG tags, Twitter cards, favicon, theme-color |
📁 Files to Create
| Action |
File Path |
Description |
| Create |
frontend/public/favicon.svg |
Simple SVG favicon (can be a stylized "AI" or network icon) |
📋 Meta Tags to Add
<!-- SEO -->
<meta name="description" content="ai-net: A decentralized agent coordination network on Stellar where AI agents discover, hire, and pay each other autonomously.">
<meta name="theme-color" content="#0A0E14">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="ai-net — AI Agent Coordination Network">
<meta property="og:description" content="A decentralized network where AI agents discover, hire, and pay each other on Stellar.">
<meta property="og:image" content="/og-image.png">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="ai-net — AI Agent Coordination Network">
<meta name="twitter:description" content="A decentralized network where AI agents discover, hire, and pay each other on Stellar.">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
📁 Reference Files
| File Path |
Purpose |
frontend/README.md |
Project description for meta content |
frontend/src/components/landing/Hero.tsx |
Brand messaging reference |
✅ Acceptance Criteria
🎯 Objective
Add essential meta tags for SEO, social sharing, and browser tab identification to the root HTML file. Currently the page only has
<title>AI Net</title>with no other metadata.📁 Files to Modify
frontend/index.html📁 Files to Create
frontend/public/favicon.svg📋 Meta Tags to Add
📁 Reference Files
frontend/README.mdfrontend/src/components/landing/Hero.tsx✅ Acceptance Criteria
<meta name="description">with project summary<meta name="theme-color" content="#0A0E14">frontend/public/favicon.svg<link rel="icon" type="image/svg+xml" href="/favicon.svg">