Files
stats/apps/public/src/app/meta.ts
Carl-Gerhard Lindesvärd 40b98f36a4 minor fixes before OSS
2024-03-28 14:59:31 +01:00

24 lines
715 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,
url: 'https://openpanel.dev',
type: 'website',
images: [
{
url: 'https://openpanel.dev/ogimage.png',
width: 2011,
height: 1339,
alt: title,
},
],
},
};