97db9ee8c7
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>
43 lines
853 B
TypeScript
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>
|
|
)
|
|
}
|