mirror of
https://github.com/2930134478/AI-CS.git
synced 2026-06-15 00:44:30 +08:00
17 lines
390 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|