Overview
Configure proper meta tags for SEO and social sharing.
Parent Epic: #70
Priority: P2
Prerequisites
Next Issues (after this is complete)
- None - this is a polish issue
Acceptance Criteria
Implementation Notes
Use Rails helpers or React on Rails features for setting meta tags:
<%# In layout %>
<title><%= content_for(:title) || 'Hacker News - React on Rails Pro' %></title>
<meta name="description" content="<%= content_for(:description) %>">
<meta property="og:title" content="<%= content_for(:title) %>">
Or handle in React components with react-helmet or similar.
Overview
Configure proper meta tags for SEO and social sharing.
Parent Epic: #70
Priority: P2
Prerequisites
Next Issues (after this is complete)
Acceptance Criteria
Implementation Notes
Use Rails helpers or React on Rails features for setting meta tags:
Or handle in React components with react-helmet or similar.