Files
Leon-in 97db9ee8c7 feat(site): redesign with product pages, ecosystem sections and pixel reveal
Add cli/code/office/platform/pricing pages, new home sections
(Ecosystem, FeatureGrid, Faq, WorkflowSteps, BottomCta, ProductEcosystem),
ScrollReveal and PixelTextReveal animation components, brand assets,
and expanded site-content.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-30 14:00:18 +08:00

43 lines
853 B
TypeScript

import type { Metadata } from "next"
import {
HeroSection,
IntegrationsSection,
PrinciplesSection,
ProductEcosystem,
WorkflowSteps,
CtaSection,
FeatureGrid,
EcosystemSection,
FaqSection,
BottomCta,
BlogPreviewSection,
} from "@/components/home"
import { SITE_BRAND, SITE_DESCRIPTION } from "@/lib/site-content"
export const metadata: Metadata = {
title: SITE_BRAND,
description: SITE_DESCRIPTION,
openGraph: {
title: SITE_BRAND,
description: SITE_DESCRIPTION,
},
}
export default function HomePage() {
return (
<main>
<HeroSection />
<IntegrationsSection />
<PrinciplesSection />
<ProductEcosystem />
<WorkflowSteps />
<CtaSection />
<FeatureGrid />
<EcosystemSection />
<FaqSection />
<BottomCta />
<BlogPreviewSection />
</main>
)
}