Skip to content

Commit

Permalink
feat: add square open graph
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Nov 1, 2023
1 parent 784b7c1 commit c9e5aeb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Binary file added public/open-graph-square.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/open-graph.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,24 @@ const { title } = Astro.props;
<meta property="og:type" content="website" />
<meta property="og:url" content="https://SecretDrop.io" />
<meta property="og:image" content="https://secretdrop.io/open-graph.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="675" />
<meta
property="og:image"
content="https://secretdrop.io/open-graph-square.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="1200" />

<meta property="fb:app_id" content="2751774521602538" />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://secretdrop.io/open-graph.png" />
<meta name="twitter:title" content="SecretDrop.io" />
<meta
name="twitter:description"
content="Public key cryptography made easy"
/>

<meta name="apple-mobile-web-app-title" content="SecretDrop" />
<meta name="application-name" content="SecretDrop" />
Expand Down

0 comments on commit c9e5aeb

Please sign in to comment.