diff --git a/apps/public/public/ogimage.png b/apps/public/public/ogimage.png new file mode 100644 index 00000000..e94d4fbd Binary files /dev/null and b/apps/public/public/ogimage.png differ diff --git a/apps/public/src/app/meta.ts b/apps/public/src/app/meta.ts index ee4951fe..a628ca54 100644 --- a/apps/public/src/app/meta.ts +++ b/apps/public/src/app/meta.ts @@ -1,7 +1,21 @@ import type { Metadata } from 'next'; +const title = 'Openpanel.dev | A Open-Source Analytics Library'; +const description = + 'Unlock actionable insights effortlessly with Insightful, the open-source analytics library that combines the power of Mixpanel with the simplicity of Plausible. Enjoy a unified overview, predictable pricing, and a vibrant community. Join us in democratizing analytics today!'; + export const defaultMeta: Metadata = { - title: 'Openpanel.dev | A Open-Source Analytics Library', - description: - 'Unlock actionable insights effortlessly with Insightful, the open-source analytics library that combines the power of Mixpanel with the simplicity of Plausible. Enjoy a unified overview, predictable pricing, and a vibrant community. Join us in democratizing analytics today!', + title, + description, + openGraph: { + title, + images: [ + { + url: 'https://openpanel.dev/ogimage.png', + width: 1200, + height: 630, + alt: 'Openpanel.dev | A Open-Source Analytics Library', + }, + ], + }, };