A Astro blog hosted on Vercel

update twitter meta tags

Changed files
+5
src
components
organisms
+5
src/components/organisms/Head.astro
··· 74 74 <meta property="twitter:url" content={Astro.url} /> 75 75 <meta property="twitter:title" content={title} /> 76 76 <meta property="twitter:description" content={description} /> 77 + <meta property="twitter:site" content="claycow" /> 77 78 { 78 79 image && ( 79 80 <meta 80 81 property="twitter:image" 81 82 content={new URL(image.src, Astro.url)} 83 + /> 84 + <meta 85 + property="twitter:image:alt" 86 + content={description} 82 87 /> 83 88 ) 84 89 }