Files
hidden11/app/page.tsx
T
alexandrev-tibco 3048be5c29
Build and push image / build (push) Successful in 1m19s
Add sponsor slots and translated clues
2026-05-06 09:25:40 +02:00

9 lines
231 B
TypeScript

import HomeClient from "@/components/HomeClient";
import { getSponsorConfig } from "@/lib/sponsor";
export const dynamic = "force-dynamic";
export default function Page() {
return <HomeClient sponsor={getSponsorConfig()} />;
}