public: add more content

This commit is contained in:
Carl-Gerhard Lindesvärd
2026-02-25 22:27:04 +01:00
parent f311146ade
commit 38d9b65ec8
42 changed files with 1864 additions and 315 deletions

View File

@@ -1,8 +1,3 @@
import {
OPENPANEL_BASE_URL,
OPENPANEL_DESCRIPTION,
OPENPANEL_NAME,
} from '@/lib/openpanel-brand';
import { AnalyticsInsights } from './_sections/analytics-insights';
import { Collaboration } from './_sections/collaboration';
import { CtaBanner } from './_sections/cta-banner';
@@ -13,19 +8,34 @@ import { Pricing } from './_sections/pricing';
import { Sdks } from './_sections/sdks';
import { Testimonials } from './_sections/testimonials';
import { WhyOpenPanel } from './_sections/why-openpanel';
import {
OPENPANEL_BASE_URL,
OPENPANEL_DESCRIPTION,
OPENPANEL_NAME,
OPENPANEL_SITE_NAME,
} from '@/lib/openpanel-brand';
const jsonLd = {
'@context': 'https://schema.org',
'@graph': [
{
'@type': 'Organization',
name: OPENPANEL_NAME,
'@type': 'WebSite',
name: OPENPANEL_SITE_NAME,
alternateName: ['OpenPanel', 'OpenPanel.dev'],
url: OPENPANEL_BASE_URL,
sameAs: ['https://github.com/Openpanel-dev/openpanel'],
description: OPENPANEL_DESCRIPTION,
keywords: 'openpanel, product analytics, web analytics, mixpanel alternative, open source analytics',
},
{
'@type': 'Organization',
name: OPENPANEL_SITE_NAME,
url: OPENPANEL_BASE_URL,
sameAs: [
'https://github.com/Openpanel-dev/openpanel',
'https://x.com/OpenPanelDev',
],
description: OPENPANEL_DESCRIPTION,
keywords:
'openpanel, product analytics, web analytics, mixpanel alternative, open source analytics',
},
{
'@type': 'SoftwareApplication',
name: OPENPANEL_NAME,
@@ -41,8 +51,8 @@ export default function HomePage() {
return (
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
type="application/ld+json"
/>
<Hero />
<WhyOpenPanel />