Skip to content

[Frontend] Add SEO Meta Tags, Favicon, and Open Graph Tags to index.html #146

Description

@devJaja

🎯 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

  • Add <meta name="description"> with project summary
  • Add Open Graph tags (type, title, description, image placeholder)
  • Add Twitter card meta tags
  • Add <meta name="theme-color" content="#0A0E14">
  • Create frontend/public/favicon.svg
  • Add <link rel="icon" type="image/svg+xml" href="/favicon.svg">
  • Verify social media preview cards render using a debugger tool

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions