Skip to content

Commit 3d3d5e2

Browse files
Remove OG image
Signed-off-by: Zen Bot <hello@zen-browser.app>
1 parent c23ca6c commit 3d3d5e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/layouts/Layout.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ interface Props {
1010
const { title, description, ogImage, isHome, redirect } = Astro.props
1111
const defaultDescription =
1212
'Zen Browser is built for speed, security, and true privacy. Download now to enjoy a beautifully-designed, distraction-free web experience packed with features.'
13-
const defaultOgImage = '/share-pic.png'
1413
import '@fontsource/bricolage-grotesque/400.css'
1514
import '@fontsource/bricolage-grotesque/500.css'
1615
import '@fontsource/bricolage-grotesque/600.css'
@@ -75,7 +74,7 @@ const locale = getLocale(Astro)
7574
<!-- Open Graph -->
7675
<meta property="og:title" content={title} />
7776
<meta property="og:type" content="website" />
78-
<meta property="og:image" content={ogImage ?? defaultOgImage} />
77+
<meta property="og:image" content={ogImage} />
7978
<meta property="og:description" content={description ?? defaultDescription} />
8079
<meta property="og:color" content="#da755b" />
8180
<!-- Twitter card -->

0 commit comments

Comments
 (0)