Lilypad-Tech / web-ui

UIs and website that are accessed with a browser
Apache License 2.0
3 stars 0 forks source link

[Website][strapi] Open Graph Headers #107

Open developersteve opened 1 month ago

developersteve commented 1 month ago

Add the following opengraph headers to the home page, and connect each to a strapi as a new collection/grouping. anything with #connect next to it needs to be connected as a input update

<!-- Standard Open Graph Metadata -->
<meta property="og:title" content="Page Title Here" /> `#connect` 
<meta property="og:description" content="A brief description of the page here." /> `#connect`
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.example.com/page-url-here" /> `Can we populate this from the static site build so that its filled in automatically?`
<meta property="og:image" content="https://www.example.com/path-to-image.jpg" /> `#connect`
<meta property="og:image:alt" content="A description of the image." /> `#connect`
<meta property="og:site_name" content="Website Name Here" /> `#connect`
<meta property="og:locale" content="en_US" />

<!-- Twitter Card Metadata -->
<meta name="twitter:card" content="summary_large_image" /> `#connect`
<meta name="twitter:title" content="Page Title Here" /> `#connect`
<meta name="twitter:description" content="A brief description of the page here." /> `#connect`
<meta name="twitter:image" content="https://www.example.com/path-to-image.jpg" /> `#connect`
<meta name="twitter:image:alt" content="A description of the image." /> `#connect`
<meta name="twitter:site" content="@lilypad_tech" />