Skip to content

Commit

Permalink
fix: image sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
JustaSqu1d authored May 9, 2024
1 parent ae6f53f commit 039cf44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/layouts/DefaultLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ const DefaultLayout: React.FC<DefaultLayoutProps> = ({ title, description, child
<meta name="description" content={ description } />
<meta property="og:description" content="The official guide for making bots and other Discord applications using the Pycord library." />
<meta property="og:title" content="The Pycord Guide" />
<meta property="og:thumbnail" content="https://guide.pycord.dev/img/logo.png" />
<meta property="og:image" content="https://guide.pycord.dev/img/logo.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="Pycord Logo" />
<meta name="theme-color" content="#5865F2" />
</Head>
<Layout>
Expand Down

0 comments on commit 039cf44

Please sign in to comment.