🚀  Astro — SEO


Bare minimum SEO meta tags to make most social networks and Google engine happy.

Keywords:

  • astro
  • astro-component
  • google
  • opengraph
  • search-engine
  • optimization
  • html
  • seo

🚀  Astro — SEO

Bare minimum SEO meta tags to make most social networks and Google engine happy.

📦  Installation

pnpm i @julian_cataldo/astro-seo

🛠  Usage

---
import SEO from '@julian_cataldo/astro-seo/SEO.astro';
// ...
---
<!-- ... -->
<head>
  <!-- Place component inside HEAD tag -->

  <!-- All properties are mandatory -->
  <SEO
    image={'/some_image_url-preferably_absolute.jpg'}
    title={'Le cool title'}
    description={'Le insightful description'}
    siteName={'Le Website'}
  />

  <!-- ... -->
</head>
<!-- ... -->

In <head>:

<meta name="mobile-web-app-capable" content="yes" />

<meta name="og:site_name" property="og:site_name" content="JulianCataldo.com" />
<meta name="apple-mobile-web-app-title" content="JulianCataldo.com" />

<title>
  Julian Cataldo ⫸ Développeur Web Front-end freelance ⫷ React | Vue | Node ⫸
  Julian Cataldo
</title>
<meta
  name="og:title"
  property="og:title"
  content="Julian Cataldo ⫸ Développeur Web Front-end freelance ⫷ React | Vue | Node ⫸ Julian Cataldo
"
/>

<meta
  name="twitter:card"
  content="/projet/bordeaux/main_gallery/Magister-Bordeaux_Gironde--20170719--w1280px.jpg"
/>
<meta
  name="og:image"
  property="og:image"
  content="/projet/bordeaux/main_gallery/Magister-Bordeaux_Gironde--20170719--w1280px.jpg"
/>

<meta
  name="og:description"
  property="og:description"
  content="Web, Expériences Utilisateur, Intégration Médias, Interactivité,
Design Graphique, Identité, Communication, Audiovisuel.
Découvrez mes projets et mon profil professionnel.
"
/>
<meta
  name="description"
  content="Web, Expériences Utilisateur, Intégration Médias, Interactivité,
Design Graphique, Identité, Communication, Audiovisuel.
Découvrez mes projets et mon profil professionnel.
"
/>

TypeScript API


name
type
required
default
image
string
true
'/poster.jpg'
title
string
true
'Untitled'
description
string
true
'- Website -'
siteName
string
true
'• Website •'

Changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

0.12.1 (2022-07-24)

Bug Fixes

  • correct meta keywords for seo (e61291d)
  • making twitter compatible robots happy (8eadeea)

0.12.0 (2022-07-18)

Features

  • add default values for seo (3e785e9)
  • ts properties extractor for docs (9a8e65e)

0.11.0 (2022-06-28)

Features

  • better defaults properties (cc55aec)

0.10.12 (2022-06-26)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.11 (2022-06-25)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.10 (2022-06-22)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.9 (2022-06-22)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.8 (2022-06-22)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.7 (2022-06-21)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.6 (2022-06-20)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.5 (2022-06-20)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.4 (2022-06-19)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.3 (2022-06-19)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.2 (2022-06-19)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.1 (2022-06-19)

Note: Version bump only for package @julian_cataldo/astro-seo

0.10.0 (2022-06-19)

Features

...