#000000
Gradient-Richtung
#000000
John Doe
July 13
• 5 min read
Speichere dein OG-Bild einfach als og.png im /public-Ordner. Folge dann den untenstehenden Schritten je nach technologischem Stack – ob HTML, Next.js oder React. Einfache Einrichtung, perfekte Vorschau.
1
2
3
4
5
6
7
8
9
10
11
<!-- OG Tags -->
<meta property="og:title" content="Your Page Title" />
<meta property="og:description" content="Your page description" />
<meta property="og:image" content="https://mydomain.co/og.png" />
<meta property="og:url" content="https://mydomain.co" />
<!-- X Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://mydomain.co/og.png" />
<!-- DO NOT forget to change the 'mydomain.co' to your domain. -->
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// app/page.js or app/page.tsx
export const metadata = {
title: "Your Page Title",
description: "Your page description",
openGraph: {
title: "Your Page Title",
description: "Your page description",
url: "https://mydomain.co",
siteName: "Your Site Name",
images: [
{
url: "/og.png",
width: 1200,
height: 630,
alt: "OG Image Alt Text",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
images: ["/og.png"],
},
};
1
2
3
4
5
6
7
8
9
10
11
// Using react-helmet in React projects
import { Helmet } from "react-helmet";
<Helmet>
<meta property="og:title" content="Your Page Title" />
<meta property="og:description" content="Your page description" />
<meta property="og:image" content="https://mydomain.co/og.png" />
<meta property="og:url" content="https://mydomain.co" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://mydomain.co/og.png" />
</Helmet>;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// gatsby-config.js
module.exports = {
plugins: ["gatsby-plugin-react-helmet"],
};
// in your page/component
import { Helmet } from "react-helmet";
<Helmet>
<meta property="og:title" content="Your Page Title" />
<meta property="og:description" content="Your page description" />
<meta property="og:image" content="https://mydomain.co/og.png" />
<meta property="og:url" content="https://mydomain.co" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://mydomain.co/og.png" />
</Helmet>;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Nuxt 3 - in a page component
<script setup>
useHead({
title: 'Your Page Title',
meta: [
{ property: 'og:title', content: 'Your Page Title' },
{ property: 'og:description', content: 'Your page description' },
{ property: 'og:image', content: 'https://mydomain.co/og.png' },
{ property: 'og:url', content: 'https://mydomain.co' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:image', content: 'https://mydomain.co/og.png' },
],
})
</script>
Du weißt nicht, wie deine Website beim Teilen in sozialen Medien aussieht? Das Tool OG-Bildvorschau zeigt dir genau, wie dein Link auf Plattformen wie Facebook, Twitter (X) und Discord dargestellt wird.
Füge die URL ein und erhalte eine Echtzeitvorschau deiner Seite – genau so, wie sie andere Nutzer in Nachrichten oder Feeds sehen würden.
So findest du ganz einfach Fehler, verbesserst dein Branding und sorgst dafür, dass jeder geteilte Link Wirkung zeigt.
⚡ Sofortige Simulation • Keine Einrichtung notwendig • Realistische Social-Vorschau
Das OG-Bild (Open Graph-Bild) ist die visuelle Vorschau, die angezeigt wird, wenn dein Link auf Plattformen wie Twitter (X), Facebook, LinkedIn, Discord oder iMessage geteilt wird. Es ist der erste Eindruck – und entscheidet, ob jemand klickt oder weiterscrollt.
Individuelle OG-Bilder erhöhen die Interaktion mit deinen Links, sorgen für Markenkonsistenz und helfen dir, in überfüllten Feeds aufzufallen. Kleiner Aufwand, große Wirkung.
✅ Empfohlene Größe: 1200×630 Pixel. Verwende scharfe Schrift, starken Kontrast und relevante Bilder.
Sprache wählen
Thema wählen
© 2025 ReadyTools. Alle Rechte vorbehalten.