feat
Desc: - Fitur crowdfunding - Fitur Investasi - Fitur tambah investasi No issue
This commit is contained in:
14
src/app/dev/crowd/main/layout.tsx
Normal file
14
src/app/dev/crowd/main/layout.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/crowd/main/page.tsx
Normal file
9
src/app/dev/crowd/main/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { MainCrowd } from "@/app_modules/crowd";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<MainCrowd />
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/crowd/splash/page.tsx
Normal file
7
src/app/dev/crowd/splash/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { SplashCrowd } from "@/app_modules/crowd";
|
||||
|
||||
export default async function Page() {
|
||||
return <>
|
||||
<SplashCrowd/>
|
||||
</>
|
||||
}
|
||||
Reference in New Issue
Block a user