SEO Implementation Example
This page demonstrates how to use the comprehensive SEO meta tags system.
SEO Features Implemented
- ✅ Meta title and description
- ✅ Keywords meta tag
- ✅ Canonical URL
- ✅ Open Graph tags (Facebook)
- ✅ Twitter Card tags
- ✅ Robots meta tag
- ✅ Structured data (JSON-LD)
How to Use SEOMeta Component
import SEOMeta from '@/components/SEOMeta'
export default function MyPage() {
return (
<>
<SEOMeta
title="Your Page Title"
description="Your page description"
keywords="keyword1, keyword2, keyword3"
canonical="https://yoursite.com/page"
ogTitle="Your Open Graph Title"
ogDescription="Your Open Graph Description"
ogImage="https://yoursite.com/image.jpg"
structuredData={JSON.stringify(yourSchemaData)}
/>
<main>
{/* Your page content */}
</main>
</>
)
}