upd: investasi

Deskripsi:
- api pada bursa investasi

No Issues
This commit is contained in:
amel
2024-12-16 15:16:55 +08:00
parent df6dcd6eb3
commit 63d6d48f63
8 changed files with 368 additions and 4 deletions

View File

@@ -1,12 +1,12 @@
import { Investasi_UiBeranda } from "@/app_modules/investasi/_ui";
import { investasi_funGetAllPublish } from "@/app_modules/investasi/fun/get_all_investasi";
import { Investasi_ViewBerandaNew } from "@/app_modules/investasi/_ui";
export default async function Page() {
const allData = await investasi_funGetAllPublish({ page: 1 });
// const allData = await investasi_funGetAllPublish({ page: 1 });
return (
<>
<Investasi_UiBeranda dataInvestasi={allData as any} />
{/* <Investasi_UiBeranda dataInvestasi={allData as any} /> */}
<Investasi_ViewBerandaNew />
</>
);
}