page.tsx 390 B

12345678910111213141516
  1. import { HomePageClient } from "@/components/marketing/HomePageClient";
  2. import { buildHomeJsonLd } from "@/lib/seo/home-json-ld";
  3. export default function HomePage() {
  4. const jsonLd = buildHomeJsonLd();
  5. return (
  6. <>
  7. <script
  8. type="application/ld+json"
  9. dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
  10. />
  11. <HomePageClient />
  12. </>
  13. );
  14. }