Skip to content

Commit

Permalink
Tried to fix twittercards by adding the basePath
Browse files Browse the repository at this point in the history
  • Loading branch information
originalnicodr committed Dec 28, 2023
1 parent 40579a7 commit 4b4a54c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export default function App({ Component, pageProps }: AppProps) {

<meta property="og:title" content="A year of FRAMED"/>
<meta property="og:description" content="A collection of each year's summary of FRAMED screenshots, guides, and activity."/>
<meta property="og:image" content="twitter-card.jpg"/>
<meta property="og:image" content={`${basePath}/twitter-card.jpg`}/>
<link rel="apple-touch-icon" href="logo512.jpg" />

<meta name="twitter:card" content="twitter-card.jpg" />
<meta name="twitter:card" content={`${basePath}/twitter-card.jpg`} />
<meta name="twitter:title" content="A year of FRAMED" />
<meta name="twitter:description" content="A collection of each year's summary of FRAMED screenshots, guides, and activity." />
<meta name="twitter:image" content="twitter-card.jpg" />
<meta name="twitter:image" content={`${basePath}/twitter-card.jpg`} />
</Head>
<Navigation />
<Component {...pageProps} />
Expand Down

0 comments on commit 4b4a54c

Please sign in to comment.