Skip to content

Commit

Permalink
Remove twitter large card
Browse files Browse the repository at this point in the history
This was causing the share cards to be quite large on discord as well,
which is taking up a lot of space. Going to optimize against discord for
now.
  • Loading branch information
BrandonRomano committed Jan 6, 2025
1 parent e5e6026 commit 46e8252
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/layouts/root-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,23 @@ export default function RootLayout({
<meta property="og:image:width" content="1800" />
<meta property="og:image:height" content="3200" />

<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16.png"
/>
<link rel="shortcut icon" href="/favicon.ico" />
<meta
name="twitter:image"
content="https://ghostty.org/social-share-card.jpg"
/>
<meta property="twitter:card" content="summary_large_image" />

<meta name="darkreader-lock" />
</Head>
{children}
Expand Down

0 comments on commit 46e8252

Please sign in to comment.