Vui lòng xoay dọc màn hình

Please rotate your device

SEO Example Page — SohaGame

SEO Example Page

This page demonstrates how to use the astro-seo component for better search engine optimization.

Key Features:

Implementation:

The SEO component is implemented using the astro-seo library and can be easily added to any page:

---
import Seo from '@/components/common/Seo.astro';

const seoProps = {
  title: 'Page Title',
  description: 'Page description',
  // ... other SEO properties
};
---

<Seo {...seoProps} />