Skip to content

Commit

Permalink
chore: add og image
Browse files Browse the repository at this point in the history
  • Loading branch information
mandrasch committed Oct 21, 2023
1 parent c296a78 commit db7b8b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added public/assets/twitter_og_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ const permalink = `${canonicalURL.href}`;
<meta property="og:url" content={permalink} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content="/assets/logo.webp" />
<meta property="og:image" content="/assets/twitter_og_image.png" />

<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={permalink} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content="/assets/logo.webp" />
<meta property="twitter:image" content="/assets/twitter_og_image.png" />

<link rel="stylesheet" href="/assets/main.css" />
<ViewTransitions />

0 comments on commit db7b8b6

Please sign in to comment.