Files
stats/apps/public/src/app/meta.ts
Carl-Gerhard Lindesvärd 6c109dde0e re-design public site
2024-03-05 22:07:10 +01:00

22 lines
659 B
TypeScript

import type { Metadata } from 'next';
const title = 'An open-source alternative to Mixpanel | Openpanel.dev';
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,
description,
openGraph: {
title,
images: [
{
url: 'https://openpanel.dev/ogimage.png',
width: 1200,
height: 630,
alt: title,
},
],
},
};