telosnetwork / teloscan

Telos EVM block explorer for viewing blocks, transactions, contracts, staking, and more
https://teloscan.io
Apache License 2.0
22 stars 25 forks source link

Implement proper SEO #414

Open tomtomcrypto opened 1 year ago

tomtomcrypto commented 1 year ago

Description

Currently we do not leverage any SEO practices such as using meta description, title and microdata. We should look into how we can implement this easily in Vue3.

We do not want to make the huge change of moving to SSR right now. We should do our best to improve SEO with the current client side rendering.

add/update static metatags and link previews to all main public apps:

Additional notes:

Viterbo commented 1 year ago

Note: for social sharing, I can provide the following useful code examples:

<head>
   <!-- metadata for the site description -->
   <meta name="description" content="This is the description">

   <!-- metadata for the preview image -->
   <meta property="og:image" content="image_url">

   <!-- metadata for the canonical URL to show -->
   <link rel="canonical" href="https://wallet.telos.net/">
</head>