docs: add llms

This commit is contained in:
Carl-Gerhard Lindesvärd
2026-02-09 21:46:09 +00:00
parent 40a3178b57
commit 9f441fd9fa
11 changed files with 330 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
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';
@@ -9,9 +14,34 @@ import { Sdks } from './_sections/sdks';
import { Testimonials } from './_sections/testimonials';
import { WhyOpenPanel } from './_sections/why-openpanel';
const jsonLd = {
'@context': 'https://schema.org',
'@graph': [
{
'@type': 'Organization',
name: OPENPANEL_NAME,
url: OPENPANEL_BASE_URL,
sameAs: ['https://github.com/Openpanel-dev/openpanel'],
description: OPENPANEL_DESCRIPTION,
},
{
'@type': 'SoftwareApplication',
name: OPENPANEL_NAME,
applicationCategory: 'AnalyticsApplication',
operatingSystem: 'Web',
url: OPENPANEL_BASE_URL,
description: OPENPANEL_DESCRIPTION,
},
],
};
export default function HomePage() {
return (
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
/>
<Hero />
<WhyOpenPanel />
<AnalyticsInsights />