Files
AI-CS/frontend/app/page.tsx
T
2026-03-25 18:50:58 +08:00

17 lines
390 B
TypeScript

import { HomePageClient } from "@/components/marketing/HomePageClient";
import { buildHomeJsonLd } from "@/lib/seo/home-json-ld";
export default function HomePage() {
const jsonLd = buildHomeJsonLd();
return (
<>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
/>
<HomePageClient />
</>
);
}