simple-astro-seo
Version:
A simple SEO package that includes everything you need to rank and share your content with others
31 lines (28 loc) • 584 B
text/typescript
export interface Props {
/**
* Image URL, preferably absolute and 1200x630px \
* Used for social networks…
* */
image: string;
/**
* Used for window / tab title, search engines results, social networks…
* */
title: string;
/**
* Used for search engines results, social networks…
* */
description: string;
/**
* Used for Discord, PWA…
* */
siteName: string;
/**
* Used for canonical URL, search engines results, social networks etc
* */
url: string;
/**
* Twitter handle for Twitter SEO
*/
twitterHandle: string;
pageType: string;
}