Code for my personal website
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update og image

+1 -7
public/images/safwanyp-og.png

This is a binary file and will not be displayed.

+1 -7
src/components/Head.astro
··· 18 18 19 19 const canonicalURL = new URL(Astro.url.pathname, Astro.site); 20 20 21 - const { title, description, image = '/nano.png' } = Astro.props; 21 + const { title, description, image = '/images/safwanyp-og.png' } = Astro.props; 22 22 --- 23 23 24 24 <meta charset='utf-8' /> ··· 42 42 <meta property='og:title' content={title} /> 43 43 <meta property='og:description' content={description} /> 44 44 <meta property='og:image' content={new URL(image, Astro.url)} /> 45 - 46 - <meta property='twitter:card' content='summary_large_image' /> 47 - <meta property='twitter:url' content={Astro.url} /> 48 - <meta property='twitter:title' content={title} /> 49 - <meta property='twitter:description' content={description} /> 50 - <meta property='twitter:image' content={new URL(image, Astro.url)} /> 51 45 52 46 <ViewTransitions /> 53 47