Desc:
- Fitur crowdfunding
- Fitur Investasi
- Fitur tambah investasi
No issue
This commit is contained in:
2023-10-20 10:15:17 +08:00
parent 66fcad8634
commit bff07e84b1
47 changed files with 1172 additions and 49 deletions

View File

@@ -0,0 +1,14 @@
import { LayoutMainCrowd } from "@/app_modules/crowd";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutMainCrowd>{children}</LayoutMainCrowd>
</>
);
}

View File

@@ -0,0 +1,9 @@
import { MainCrowd } from "@/app_modules/crowd";
export default async function Page() {
return (
<>
<MainCrowd />
</>
);
}

View File

@@ -0,0 +1,7 @@
import { SplashCrowd } from "@/app_modules/crowd";
export default async function Page() {
return <>
<SplashCrowd/>
</>
}