We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d4f29 commit 3f6fcd3Copy full SHA for 3f6fcd3
src/frame/components/DefaultLayout.tsx
@@ -128,6 +128,13 @@ export const DefaultLayout = (props: Props) => {
128
<meta property="og:image" content={getSocialCardImage()} />
129
</>
130
)}
131
+ {/* Twitter Meta Tags */}
132
+ <meta name="twitter:card" content="summary" />
133
+ <meta property="twitter:domain" content={new URL(fullUrl).hostname} />
134
+ <meta property="twitter:url" content={fullUrl} />
135
+ <meta name="twitter:title" content={page.fullTitle} />
136
+ {page.introPlainText && <meta name="twitter:description" content={page.introPlainText} />}
137
+ <meta name="twitter:image" content={getSocialCardImage()} />
138
</Head>
139
<a
140
href="#main-content"
0 commit comments