diff --git a/app/layout.tsx b/app/layout.tsx index 87858bd..62b2bff 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -18,6 +18,7 @@ const _permanentMarker = Permanent_Marker({ }) export const metadata: Metadata = { + metadataBase: new URL("https://jefflix.com"), title: "Jefflix - Seize the Streams of Production", description: "A revolutionary approach to media consumption. Free from subscriptions, owned by the people.", generator: "v0.app", @@ -38,6 +39,28 @@ export const metadata: Metadata = { ], apple: "/apple-icon.png", }, + openGraph: { + type: "website", + locale: "en_US", + url: "https://jefflix.com", + title: "Jefflix - Seize the Streams of Production", + description: "A revolutionary approach to media consumption. Free from subscriptions, owned by the people.", + siteName: "Jefflix", + images: [ + { + url: "/og-image.jpg", + width: 1200, + height: 630, + alt: "Jefflix - Seize the Streams of Production", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Jefflix - Seize the Streams of Production", + description: "A revolutionary approach to media consumption. Free from subscriptions, owned by the people.", + images: ["/og-image.jpg"], + }, } export default function RootLayout({ diff --git a/public/og-image.jpg b/public/og-image.jpg new file mode 100644 index 0000000..656e737 Binary files /dev/null and b/public/og-image.jpg differ